Skip to content

Commit e5f4f8f

Browse files
committed
build: bump version to 0.1.7
1 parent 94ddac5 commit e5f4f8f

4 files changed

Lines changed: 15 additions & 3 deletions

File tree

.github/workflows/binaries.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ on:
1717
env:
1818
PROJECT_NAME: "candlex"
1919
PROJECT_DIR: "native/candlex"
20-
PROJECT_VERSION: "0.1.6"
20+
PROJECT_VERSION: "0.1.7"
2121
NIF_VERSION: "2.16"
2222

2323
jobs:

CHANGELOG.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,18 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## [0.1.7] - 2023-12-01
9+
10+
### Added
11+
12+
- `Nx.put_slice`, more complete support (#46)
13+
- `Nx.dot`, support n x m (#51)
14+
- `Nx.take` supports indices rank > 1 (#57)
15+
- `Nx.argsort` basic support, only CPU (#59)
16+
- `Nx.pad`, support tensors of rank > 1 (#61)
17+
- `Nx.pad` supports negative padding (#62)
18+
- `Nx.window_max` supports `:same` padding (#64)
19+
820
## [0.1.6] - 2023-11-24
921

1022
### Added

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ by adding `candlex` to your list of dependencies in `mix.exs`:
1414
```elixir
1515
def deps do
1616
[
17-
{:candlex, "~> 0.1.6"}
17+
{:candlex, "~> 0.1.7"}
1818
]
1919
end
2020
```

mix.exs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ defmodule Candlex.MixProject do
33

44
@description "An Nx backend for candle machine learning minimalist framework"
55
@source_url "https://github.com/mimiquate/candlex"
6-
@version "0.1.6"
6+
@version "0.1.7"
77

88
def project do
99
[

0 commit comments

Comments
 (0)