Skip to content

Commit 6d9354b

Browse files
committed
build: bump version to v0.1.9
1 parent 9cd9fed commit 6d9354b

File tree

4 files changed

+10
-3
lines changed

4 files changed

+10
-3
lines changed

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

2323
jobs:

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,12 @@ 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.9] - 2024-02-29
9+
10+
### Added
11+
12+
- Update candle from 0.3.1 to 0.4.1
13+
814
## [0.1.8] - 2023-12-11
915

1016
### Added

README.md

Lines changed: 2 additions & 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.8"}
17+
{:candlex, "~> 0.1.9"}
1818
]
1919
end
2020
```
@@ -81,6 +81,7 @@ then you can build with `CANDLEX_NIF_TARGET=cuda`. See the `CANDLEX_NIF_TARGET`
8181
To publish a new version of this package:
8282

8383
1. Update version in `mix.exs`, `.github/workflows/binaries.yml` and `README.md`.
84+
1. `git commit -am "build: bump version to <tag-version>"`
8485
1. `git tag -s <tag-version>` to create new signed tag.
8586
1. `git push origin <tag-version>` to push the tag.
8687
1. Wait for the `binaries.yml` GitHub workflow to build all the NIF binaries.

mix.exs

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

66
@description "An Nx backend for candle machine learning minimalist framework"
77
@source_url "https://github.com/mimiquate/candlex"
8-
@version "0.1.8"
8+
@version "0.1.9"
99

1010
def project do
1111
[

0 commit comments

Comments
 (0)