Skip to content

Commit

Permalink
build: bump version to 0.1.8
Browse files Browse the repository at this point in the history
  • Loading branch information
grzuy committed Dec 11, 2023
1 parent 823f297 commit 8fc3b4c
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/binaries.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ on:
env:
PROJECT_NAME: "candlex"
PROJECT_DIR: "native/candlex"
PROJECT_VERSION: "0.1.7"
PROJECT_VERSION: "0.1.8"
NIF_VERSION: "2.16"

jobs:
Expand Down
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,15 @@ 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.8] - 2023-12-11

### Added

- `Nx.argsort` supports tensors rank = 2 (#66)
- `Nx.dot` supports batched axes (#68)
- `Nx.window_sum` support (#71)
- `Nx.dot` more complete support for M x N tensors operation (#73)

## [0.1.7] - 2023-12-01

### Added
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ by adding `candlex` to your list of dependencies in `mix.exs`:
```elixir
def deps do
[
{:candlex, "~> 0.1.7"}
{:candlex, "~> 0.1.8"}
]
end
```
Expand Down Expand Up @@ -80,7 +80,7 @@ then you can build with `CANDLEX_NIF_TARGET=cuda`. See the `CANDLEX_NIF_TARGET`

To publish a new version of this package:

1. Update `@version` in `mix.exs` and `PROJECT_VERSION` in `.github/workflows/binaries.yml`.
1. Update version in `mix.exs`, `.github/workflows/binaries.yml` and `README.md`.
1. `git tag -s <tag-version>` to create new signed tag.
1. `git push origin <tag-version>` to push the tag.
1. Wait for the `binaries.yml` GitHub workflow to build all the NIF binaries.
Expand Down
2 changes: 1 addition & 1 deletion mix.exs
Original file line number Diff line number Diff line change
Expand Up @@ -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.7"
@version "0.1.8"

def project do
[
Expand Down

0 comments on commit 8fc3b4c

Please sign in to comment.