Skip to content

Commit

Permalink
build: bump version to 0.1.2
Browse files Browse the repository at this point in the history
  • Loading branch information
grzuy committed Oct 30, 2023
1 parent 43e4772 commit f3b7b0e
Show file tree
Hide file tree
Showing 4 changed files with 19 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/binaries.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
- { target: x86_64-pc-windows-msvc , os: windows-2022 }
- { target: x86_64-unknown-linux-gnu , os: ubuntu-22.04 }
env:
PROJECT_VERSION: "0.1.2-alpha2"
VERSION: "0.1.2"

steps:
- uses: actions/checkout@v4
Expand All @@ -43,7 +43,7 @@ jobs:
with:
project-dir: "native/candlex"
project-name: candlex
project-version: ${{ env.PROJECT_VERSION }}
project-version: ${{ env.VERSION }}
target: ${{ matrix.job.target }}
use-cross: ${{ matrix.job.use-cross }}
nif-version: ${{ matrix.nif_version }}
Expand Down
14 changes: 14 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
# Changelog

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).

## [Unreleased]

## [0.1.2] - 2023-10-30

### Added

- Precompiled binaries for a few CPU targets.
2 changes: 1 addition & 1 deletion 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.1"}
{:candlex, "~> 0.1.2"}
]
end
```
Expand Down
3 changes: 2 additions & 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.2-alpha2"
@version "0.1.2"

def project do
[
Expand Down Expand Up @@ -59,6 +59,7 @@ defmodule Candlex.MixProject do
"priv",
".formatter.exs",
"mix.exs",
"CHANGELOG.md",
"README.md",
"LICENSE",
"checksum-*.exs"
Expand Down

0 comments on commit f3b7b0e

Please sign in to comment.