From f4b8538585acf4284d3fd01dd485a5c1b187174a Mon Sep 17 00:00:00 2001 From: Mathieu Tarral Date: Thu, 29 Feb 2024 10:09:07 +0100 Subject: [PATCH 1/2] gitignore: add vscode --- .gitignore | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.gitignore b/.gitignore index c64fb977..478c85f7 100644 --- a/.gitignore +++ b/.gitignore @@ -1,6 +1,8 @@ # IntelliJ IDEA .idea/ *.iml +# VScode +.vscode/ # Generated by Cargo # will have compiled files and executables From b17962d6cf3fc3f30dd3adaed3dc47d1efff1d52 Mon Sep 17 00:00:00 2001 From: Mathieu Tarral Date: Thu, 29 Feb 2024 10:14:17 +0100 Subject: [PATCH 2/2] update latest cargo-release --- Cargo.toml | 4 ++-- python/Cargo.toml | 4 ++-- python/release.toml | 2 +- release.toml | 1 - utilities/release.toml | 2 +- 5 files changed, 6 insertions(+), 7 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 9e05ad52..7ca49d5d 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -106,9 +106,9 @@ assets = [ [package.metadata.release] # releases are managed by cargo release, but publication is done on the CI -# this metadata prevents a misuse when --skip-publish flag is missing from cargo +# this metadata prevents a misuse when --no-publish flag is missing from cargo # release command line -disable-publish = true +publish = false [workspace] members = ["python"] diff --git a/python/Cargo.toml b/python/Cargo.toml index f7c49c1f..2838d7ee 100644 --- a/python/Cargo.toml +++ b/python/Cargo.toml @@ -38,6 +38,6 @@ features = ["extension-module"] [package.metadata.release] # releases are managed by cargo release, but publication is done on the CI -# this metadata prevents a misuse when --skip-publish flag is missing from cargo +# this metadata prevents a misuse when --no-publish flag is missing from cargo # release command line -disable-publish = true +publish = false diff --git a/python/release.toml b/python/release.toml index 05144b3f..23291961 100644 --- a/python/release.toml +++ b/python/release.toml @@ -1,4 +1,4 @@ # cargo-release config file # don't create pymicrovmi-vxxx tag -disable-tag = true +tag = false diff --git a/release.toml b/release.toml index 6467716f..3967a2ae 100644 --- a/release.toml +++ b/release.toml @@ -1,3 +1,2 @@ # cargo release config file consolidate-commits = true -consolidate-pushes = true diff --git a/utilities/release.toml b/utilities/release.toml index e82fcb39..f8f3c841 100644 --- a/utilities/release.toml +++ b/utilities/release.toml @@ -1,4 +1,4 @@ # cargo-release config file # internal crate, skip release process -disable-release = true +release = false