Skip to content

Commit

Permalink
chore: prepare release (#123)
Browse files Browse the repository at this point in the history
This PR prepares the repository for release.

@tdejager 

Make sure you have `cargo-release` installed:

```shell
cargo install cargo-release
```

Then simply run the following from the root of the repository:

```shell
cargo release # verify that everything is as you expect it
cargo release --execute # actually publish the release
git push upstream v0.1.0 # push the tag to the upstream repository
```
  • Loading branch information
baszalmstra authored Dec 8, 2023
1 parent cc5099a commit 803b7e3
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion crates/rattler_installs_packages/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ repository.workspace = true
license.workspace = true
readme.workspace = true
rust-version.workspace = true
include = ["vendor/"]
include = ["src/", "vendor/", "benches/"]

[features]
default = ["native-tls"]
Expand Down
1 change: 0 additions & 1 deletion crates/rip_bin/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -39,5 +39,4 @@ serde = "1.0.188"
serde_json = "1.0.107"

[package.metadata.release]
# Dont publish the binary
release = false
3 changes: 3 additions & 0 deletions crates/test-utils/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,3 +19,6 @@ dirs = "5.0.1"
fslock = "0.2.1"
data-encoding = "2.4.0"
tokio = "1.34.0"

[package.metadata.release]
release = false

0 comments on commit 803b7e3

Please sign in to comment.