Skip to content

Commit 8fc3b4c

Browse files
committed
build: bump version to 0.1.8
1 parent 823f297 commit 8fc3b4c

File tree

4 files changed

+13
-4
lines changed

4 files changed

+13
-4
lines changed

.github/workflows/binaries.yml

+1-1
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.7"
20+
PROJECT_VERSION: "0.1.8"
2121
NIF_VERSION: "2.16"
2222

2323
jobs:

CHANGELOG.md

+9
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,15 @@ 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.8] - 2023-12-11
9+
10+
### Added
11+
12+
- `Nx.argsort` supports tensors rank = 2 (#66)
13+
- `Nx.dot` supports batched axes (#68)
14+
- `Nx.window_sum` support (#71)
15+
- `Nx.dot` more complete support for M x N tensors operation (#73)
16+
817
## [0.1.7] - 2023-12-01
918

1019
### Added

README.md

+2-2
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.7"}
17+
{:candlex, "~> 0.1.8"}
1818
]
1919
end
2020
```
@@ -80,7 +80,7 @@ then you can build with `CANDLEX_NIF_TARGET=cuda`. See the `CANDLEX_NIF_TARGET`
8080

8181
To publish a new version of this package:
8282

83-
1. Update `@version` in `mix.exs` and `PROJECT_VERSION` in `.github/workflows/binaries.yml`.
83+
1. Update version in `mix.exs`, `.github/workflows/binaries.yml` and `README.md`.
8484
1. `git tag -s <tag-version>` to create new signed tag.
8585
1. `git push origin <tag-version>` to push the tag.
8686
1. Wait for the `binaries.yml` GitHub workflow to build all the NIF binaries.

mix.exs

+1-1
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.7"
6+
@version "0.1.8"
77

88
def project do
99
[

0 commit comments

Comments
 (0)