From 803b7e3859ce38e101b0a573420a40736bc91d69 Mon Sep 17 00:00:00 2001 From: Bas Zalmstra Date: Fri, 8 Dec 2023 14:24:22 +0100 Subject: [PATCH] chore: prepare release (#123) 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 ``` --- crates/rattler_installs_packages/Cargo.toml | 2 +- crates/rip_bin/Cargo.toml | 1 - crates/test-utils/Cargo.toml | 3 +++ 3 files changed, 4 insertions(+), 2 deletions(-) diff --git a/crates/rattler_installs_packages/Cargo.toml b/crates/rattler_installs_packages/Cargo.toml index b7a8662b..4c2fa504 100644 --- a/crates/rattler_installs_packages/Cargo.toml +++ b/crates/rattler_installs_packages/Cargo.toml @@ -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"] diff --git a/crates/rip_bin/Cargo.toml b/crates/rip_bin/Cargo.toml index 1777f84b..e6e9db5d 100644 --- a/crates/rip_bin/Cargo.toml +++ b/crates/rip_bin/Cargo.toml @@ -39,5 +39,4 @@ serde = "1.0.188" serde_json = "1.0.107" [package.metadata.release] -# Dont publish the binary release = false diff --git a/crates/test-utils/Cargo.toml b/crates/test-utils/Cargo.toml index 719e4a98..3d486cc8 100644 --- a/crates/test-utils/Cargo.toml +++ b/crates/test-utils/Cargo.toml @@ -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