Skip to content

Commit

Permalink
v0.7.0
Browse files Browse the repository at this point in the history
  • Loading branch information
bgoosmanviz committed Jan 2, 2025
1 parent e529302 commit c79e591
Show file tree
Hide file tree
Showing 4 changed files with 29 additions and 4 deletions.
27 changes: 26 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,4 +33,29 @@ jobs:
uses: dtolnay/rust-toolchain@stable
with:
toolchain: stable
target: ${{ matrix.job.target }}
target: ${{ matrix.job.target }}

- name: Build the project
id: build-crate
uses: philss/[email protected]
with:
project-name: kuzu_ex
project-version: ${{ env.PROJECT_VERSION }}
target: ${{ matrix.job.target }}
nif-version: ${{ matrix.nif }}
use-cross: ${{ matrix.job.use-cross }}
project-dir: "native/kuzu_ex"
cross-version: "v0.2.5"

- name: Upload artifact
uses: actions/upload-artifact@v3
with:
name: ${{ steps.build-crate.outputs.file-name }}
path: ${{ steps.build-crate.outputs.file-path }}

- name: Publish archives and packages
uses: softprops/action-gh-release@v1
with:
files: |
${{ steps.build-crate.outputs.file-path }}
if: startsWith(github.ref, 'refs/tags/')
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ by adding `kuzu_nif` to your list of dependencies in `mix.exs`:
```elixir
def deps do
[
{:kuzu_nif, "~> 0.6.0"}
{:kuzu_nif, "~> 0.7.0"}
]
end
```
Expand Down
2 changes: 1 addition & 1 deletion mix.exs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
defmodule KuzuNif.MixProject do
use Mix.Project

@version "0.6.0"
@version "0.7.0"
@source_url "https://github.com/bgoosmanviz/kuzu_nif"

def project do
Expand Down
2 changes: 1 addition & 1 deletion native/kuzu_ex/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "kuzu_ex"
version = "0.6.0"
version = "0.7.0"
authors = []
edition = "2021"

Expand Down

0 comments on commit c79e591

Please sign in to comment.