Skip to content

Commit

Permalink
chore: release 0.1.1 (#14)
Browse files Browse the repository at this point in the history
* chore: release 0.1.1

* small doc change
  • Loading branch information
golota60 authored Jan 14, 2024
1 parent b868b9c commit c460d99
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 10 deletions.
4 changes: 2 additions & 2 deletions PUBLISHING.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,12 @@ 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`!).
3. Run the following commands
3. Run the following commands(in this order)

```
cargo publish -p oxytail-base
cargo publish -p oxytail-theme-dark
cargo publish -p oxytail-theme-defaults
cargo publish -p oxytail-theme-dark
```

4. Merge the release branch
4 changes: 2 additions & 2 deletions YOUR_OWN_THEME.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@ So, install `floem`, `oxytail-theme-defaults` and `oxytail-base`.
```toml
[dependencies]
floem = "0.1.1"
oxytail-base = "0.1.0"
oxytail-theme-defaults = "0.1.0"
oxytail-base = "0.1.1"
oxytail-theme-defaults = "0.1.1"
```


Expand Down
2 changes: 1 addition & 1 deletion oxytail-base/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
name = "oxytail-base"
description = "Building block for creating oxytail themes"
license = "MIT"
version = "0.1.0"
version = "0.1.1"
edition = "2021"
rust-version = "1.75"

Expand Down
6 changes: 3 additions & 3 deletions oxytail-theme-dark/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,13 @@
name = "oxytail-theme-dark"
description = "Dark theme for oxytail-base"
license = "MIT"
version = "0.1.0"
version = "0.1.1"
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 = "0.1.0"
oxytail-theme-defaults = "0.1.0"
oxytail-base = "0.1.1"
oxytail-theme-defaults = "0.1.1"
4 changes: 2 additions & 2 deletions oxytail-theme-defaults/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,12 @@
name = "oxytail-theme-defaults"
description = "A set of uncolored sane defaults for creating simple themes."
license = "MIT"
version = "0.1.0"
version = "0.1.1"
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 = "0.1.0"
oxytail-base = "0.1.1"

0 comments on commit c460d99

Please sign in to comment.