From e5f4f8f0bd7cfa0bec2c3c69a41d74e7177bf3cc Mon Sep 17 00:00:00 2001 From: Gonzalo <456459+grzuy@users.noreply.github.com> Date: Fri, 1 Dec 2023 17:58:02 -0300 Subject: [PATCH] build: bump version to 0.1.7 --- .github/workflows/binaries.yml | 2 +- CHANGELOG.md | 12 ++++++++++++ README.md | 2 +- mix.exs | 2 +- 4 files changed, 15 insertions(+), 3 deletions(-) diff --git a/.github/workflows/binaries.yml b/.github/workflows/binaries.yml index 5626c61..e6165dd 100644 --- a/.github/workflows/binaries.yml +++ b/.github/workflows/binaries.yml @@ -17,7 +17,7 @@ on: env: PROJECT_NAME: "candlex" PROJECT_DIR: "native/candlex" - PROJECT_VERSION: "0.1.6" + PROJECT_VERSION: "0.1.7" NIF_VERSION: "2.16" jobs: diff --git a/CHANGELOG.md b/CHANGELOG.md index 635350a..7da9227 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,18 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [0.1.7] - 2023-12-01 + +### Added + +- `Nx.put_slice`, more complete support (#46) +- `Nx.dot`, support n x m (#51) +- `Nx.take` supports indices rank > 1 (#57) +- `Nx.argsort` basic support, only CPU (#59) +- `Nx.pad`, support tensors of rank > 1 (#61) +- `Nx.pad` supports negative padding (#62) +- `Nx.window_max` supports `:same` padding (#64) + ## [0.1.6] - 2023-11-24 ### Added diff --git a/README.md b/README.md index e4fe682..2caa579 100644 --- a/README.md +++ b/README.md @@ -14,7 +14,7 @@ by adding `candlex` to your list of dependencies in `mix.exs`: ```elixir def deps do [ - {:candlex, "~> 0.1.6"} + {:candlex, "~> 0.1.7"} ] end ``` diff --git a/mix.exs b/mix.exs index 850e4eb..17e1dc0 100644 --- a/mix.exs +++ b/mix.exs @@ -3,7 +3,7 @@ defmodule Candlex.MixProject do @description "An Nx backend for candle machine learning minimalist framework" @source_url "https://github.com/mimiquate/candlex" - @version "0.1.6" + @version "0.1.7" def project do [