Skip to content

Commit

Permalink
use github actions for cargo publish
Browse files Browse the repository at this point in the history
  • Loading branch information
Dan-wanna-M committed Jun 25, 2024
1 parent ca4903b commit d71bc5d
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/python_wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name: Python Release
on:
push:
tags:
- v*
- v*-python

jobs:
macos:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/rust_crate.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name: Publish Crate
on:
push:
tags:
- 'v*'
- v*-rust

jobs:
publish:
Expand Down
6 changes: 3 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,12 @@ authors = ["Xintong Sun <[email protected]>"]
categories = ["science", "text-processing"]
description = "A fast constrained decoding engine based on context free grammar."
edition = "2021"
exclude = ["/tests","/benches", ".*"]
keywords = ["deep learning", "language model", "guided generation", "structured","constrained decoding"]
exclude = [".*"]
keywords = ["deep-learning", "language-model", "guided-generation", "structured","constrained-decoding"]
license = "MIT OR Apache-2.0"
name = "kbnf"
repository = "https://github.com/Dan-Wanna-M/kbnf"
version = "0.1.5"
version = "0.1.6"
[lib]
name = "kbnf"
crate-type = ["cdylib", "rlib"]
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ python-source = "python"
features = ["python"]
[project]
name = "kbnf"
version = "0.1.0"
version = "0.1.1"
dependencies = ["numpy"]
requires-python = ">=3.7"
classifiers = [
Expand Down

0 comments on commit d71bc5d

Please sign in to comment.