Skip to content

Commit

Permalink
chore: bump package versions for release
Browse files Browse the repository at this point in the history
  • Loading branch information
actions-user committed Feb 16, 2024
1 parent 00f49e1 commit 5ba0a14
Show file tree
Hide file tree
Showing 14 changed files with 30 additions and 30 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,15 +13,15 @@ on:
default: false
py_version:
description: Python Version
default: 0.0.5
default: 0.0.6
js_release:
description: JS Release
type: boolean
required: false
default: false
js_version:
description: JS Version
default: 0.0.22
default: 0.0.23
py_rust_release:
description: Rust-backed Python Release
type: boolean
Expand All @@ -37,7 +37,7 @@ on:
default: false
rust_version:
description: Rust Version
default: 0.0.30
default: 0.0.31

jobs:
commit_versions:
Expand Down
28 changes: 14 additions & 14 deletions .zetch.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ You can install **BitBazaar** via [crates.io](https://crates.io/):
# Cargo.toml

[dependencies]
bitbazaar = "0.0.30"
bitbazaar = "0.0.31"
```


Expand Down
2 changes: 1 addition & 1 deletion docs/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ You can install **BitBazaar** via [crates.io](https://crates.io/):
# Cargo.toml

[dependencies]
bitbazaar = "0.0.30"
bitbazaar = "0.0.31"
```


Expand Down
2 changes: 1 addition & 1 deletion js/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ You can install **BitBazaar** via [crates.io](https://crates.io/):
# Cargo.toml

[dependencies]
bitbazaar = "0.0.30"
bitbazaar = "0.0.31"
```


Expand Down
Binary file added js/bun.lockb
Binary file not shown.
2 changes: 1 addition & 1 deletion js/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "bitbazaar",
"version": "0.0.22",
"version": "0.0.23",
"description": "An assortment of publicly available cross-language utilities useful to my projects.",
"scripts": { "build": "tsup" },
"repository": {
Expand Down
2 changes: 1 addition & 1 deletion py/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ You can install **BitBazaar** via [crates.io](https://crates.io/):
# Cargo.toml

[dependencies]
bitbazaar = "0.0.30"
bitbazaar = "0.0.31"
```


Expand Down
2 changes: 1 addition & 1 deletion py/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ dev = ["ipykernel>=6.25.2"]

[project]
name = "bitbazaar"
version = "0.0.5"
version = "0.0.6"
description = "An assortment of publicly available cross-language utilities useful to my projects."
readme = "README.md"
license = { text = "MIT" }
Expand Down
2 changes: 1 addition & 1 deletion py_rust/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ You can install **BitBazaar** via [crates.io](https://crates.io/):
# Cargo.toml

[dependencies]
bitbazaar = "0.0.30"
bitbazaar = "0.0.31"
```


Expand Down
2 changes: 1 addition & 1 deletion rust/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion rust/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "bitbazaar"
description = "An assortment of publicly available cross-language utilities useful to my projects."
version = "0.0.30"
version = "0.0.31"
edition = "2021"
readme = "README.md"
license = "MIT"
Expand Down
2 changes: 1 addition & 1 deletion rust/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ You can install **BitBazaar** via [crates.io](https://crates.io/):
# Cargo.toml

[dependencies]
bitbazaar = "0.0.30"
bitbazaar = "0.0.31"
```


Expand Down
6 changes: 3 additions & 3 deletions zetch.config.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,9 @@ custom_extensions = []
commands = ["./dev_scripts/pkg.sh update_versions"]

[context.static]
PY_VERSION = { value = "0.0.5" }
JS_VERSION = { value = "0.0.22" }
RUST_VERSION = { value = "0.0.30" }
PY_VERSION = { value = "0.0.6" }
JS_VERSION = { value = "0.0.23" }
RUST_VERSION = { value = "0.0.31" }
PY_RUST_VERSION = { value = "0.0.3" }
JS_ALIASES = { value = '{ "@root": "./bitbazaar", "@scripts": "./scripts" }', coerce = "json" }

Expand Down

0 comments on commit 5ba0a14

Please sign in to comment.