Skip to content

Commit

Permalink
chore: release 0.1.2 🎉 (#21)
Browse files Browse the repository at this point in the history
chore: bump package versions
  • Loading branch information
golota60 authored Jan 28, 2024
1 parent f89bb4d commit d0a43b7
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion PUBLISHING.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Currently, publishing is done manually. Simply,

1. Create a new branch
2. Bump the version of each package and commit. We want to keep sync between each oxytail package version. Also update documentation and every mention of version to be installed(including each packages `Cargo.toml`!).
2. Bump the version of each package(both in Cargo.toml version fields and as dependencies of other packages) and commit. We want to keep sync between each oxytail package version. Also update documentation and every mention of version to be installed(including each packages `Cargo.toml`!).
3. Run the following commands(in this order)

```
Expand Down
2 changes: 1 addition & 1 deletion oxytail-base/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ repository = "https://github.com/golota60/oxytail"
keywords = ["floem", "gui", "floem-themes", "daisyui", "widgets"]
categories = ["gui"]
license = "MIT"
version = "0.1.1"
version = "0.1.2"
edition = "2021"
rust-version = "1.75"

Expand Down
10 changes: 5 additions & 5 deletions oxytail-theme-dark/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,15 +6,15 @@ repository = "https://github.com/golota60/oxytail"
keywords = ["floem", "gui", "floem-themes", "daisyui", "widgets"]
categories = ["gui"]
license = "MIT"
version = "0.1.1"
version = "0.1.2"
edition = "2021"
rust-version = "1.75"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
floem = "0.1.1"
oxytail-base = { path = "../oxytail-base" }
# oxytail-base = "0.1.1"
oxytail-theme-defaults = { path = "../oxytail-theme-defaults" }
# oxytail-theme-defaults = "0.1.1"
# oxytail-base = { path = "../oxytail-base" }
oxytail-base = "0.1.2"
# oxytail-theme-defaults = { path = "../oxytail-theme-defaults" }
oxytail-theme-defaults = "0.1.2"
6 changes: 3 additions & 3 deletions oxytail-theme-defaults/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,13 @@ repository = "https://github.com/golota60/oxytail"
keywords = ["floem", "gui", "floem-themes", "daisyui", "widgets"]
categories = ["gui"]
license = "MIT"
version = "0.1.1"
version = "0.1.2"
edition = "2021"
rust-version = "1.75"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
floem = "0.1.1"
oxytail-base = { path = "../oxytail-base" }
# oxytail-base = "0.1.1"
# oxytail-base = { path = "../oxytail-base" }
oxytail-base = "0.1.2"

0 comments on commit d0a43b7

Please sign in to comment.