diff --git a/.github/workflows/draft_nightly.yml b/.github/workflows/draft_nightly.yml index ed2146f..be8acef 100644 --- a/.github/workflows/draft_nightly.yml +++ b/.github/workflows/draft_nightly.yml @@ -15,7 +15,7 @@ env: jobs: release_image: runs-on: ubuntu-latest - container: rust:1.69.0-alpine3.17 + container: rust:1.78.0-alpine3.20 steps: # Install required dependencies @@ -51,13 +51,13 @@ jobs: GH_TOKEN: ${{ secrets.BOT_TOKEN }} - name: Create new draft release if: steps.release-exists.outcome == 'failure' && steps.release-exists.conclusion == 'success' - run: gh release create -R nxthat/c2ncl -d $BINARY_NAME-$VERSION-$CHANNEL -t $BINARY_NAME-$VERSION-$CHANNEL -F changelog.md target/debian/${BINARY_NAME}_${VERSION}_amd64.deb#c2ncl_amd64.deb + run: gh release create -R next-hat/c2ncl -d $BINARY_NAME-$VERSION-$CHANNEL -t $BINARY_NAME-$VERSION-$CHANNEL -F changelog.md target/debian/${BINARY_NAME}_${VERSION}_amd64.deb#c2ncl_amd64.deb env: GH_TOKEN: ${{ secrets.BOT_TOKEN }} - name: Update draft release if: steps.release-exists.outcome == 'success' && steps.release-exists.conclusion == 'success' run: | - gh release delete-asset -R nxthat/c2ncl -y $BINARY_NAME-$VERSION-$CHANNEL ${BINARY_NAME}_${VERSION}_amd64.deb || true - gh release upload -R nxthat/c2ncl $BINARY_NAME-$VERSION-$CHANNEL target/debian/${BINARY_NAME}_${VERSION}_amd64.deb#c2ncl_amd64.deb + gh release delete-asset -R next-hat/c2ncl -y $BINARY_NAME-$VERSION-$CHANNEL ${BINARY_NAME}_${VERSION}_amd64.deb || true + gh release upload -R next-hat/c2ncl $BINARY_NAME-$VERSION-$CHANNEL target/debian/${BINARY_NAME}_${VERSION}_amd64.deb#c2ncl_amd64.deb env: GH_TOKEN: ${{ secrets.BOT_TOKEN }} diff --git a/.github/workflows/draft_stable.yml b/.github/workflows/draft_stable.yml index c44c333..48c7a04 100644 --- a/.github/workflows/draft_stable.yml +++ b/.github/workflows/draft_stable.yml @@ -15,7 +15,7 @@ env: jobs: release_image: runs-on: ubuntu-latest - container: rust:1.69.0-alpine3.17 + container: rust:1.78.0-alpine3.20 steps: # Install required dependencies @@ -51,13 +51,13 @@ jobs: GH_TOKEN: ${{ secrets.BOT_TOKEN }} - name: Create new draft release if: steps.release-exists.outcome == 'failure' && steps.release-exists.conclusion == 'success' - run: gh release create -R nxthat/c2ncl -d $BINARY_NAME-$VERSION -t $BINARY_NAME-$VERSION -F changelog.md target/debian/${BINARY_NAME}_${VERSION}_amd64.deb#c2ncl_amd64.deb + run: gh release create -R next-hat/c2ncl -d $BINARY_NAME-$VERSION -t $BINARY_NAME-$VERSION -F changelog.md target/debian/${BINARY_NAME}_${VERSION}_amd64.deb#c2ncl_amd64.deb env: GH_TOKEN: ${{ secrets.BOT_TOKEN }} - name: Update draft release if: steps.release-exists.outcome == 'success' && steps.release-exists.conclusion == 'success' run: | - gh release delete-asset -R nxthat/c2ncl -y $BINARY_NAME-$VERSION ${BINARY_NAME}_${VERSION}_amd64.deb || true - gh release upload -R nxthat/c2ncl $BINARY_NAME-$VERSION target/debian/${BINARY_NAME}_${VERSION}_amd64.deb#c2ncl_amd64.deb + gh release delete-asset -R next-hat/c2ncl -y $BINARY_NAME-$VERSION ${BINARY_NAME}_${VERSION}_amd64.deb || true + gh release upload -R next-hat/c2ncl $BINARY_NAME-$VERSION target/debian/${BINARY_NAME}_${VERSION}_amd64.deb#c2ncl_amd64.deb env: GH_TOKEN: ${{ secrets.BOT_TOKEN }} diff --git a/Cargo.lock b/Cargo.lock index 68a9574..e485d3d 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -187,7 +187,7 @@ checksum = "a12916984aab3fa6e39d655a33e09c0071eb36d6ab3aea5c2d78551f1df6d952" [[package]] name = "c2ncl" -version = "0.0.2" +version = "0.0.3" dependencies = [ "anyhow", "bollard-next", @@ -204,9 +204,9 @@ dependencies = [ [[package]] name = "cc" -version = "1.1.5" +version = "1.1.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "324c74f2155653c90b04f25b2a47a8a631360cb908f92a772695f430c7e31052" +checksum = "2aba8f4e9906c7ce3c73463f62a7f0c65183ada1a2d47e397cc8810827f9694f" [[package]] name = "cfg-if" @@ -1091,18 +1091,18 @@ dependencies = [ [[package]] name = "thiserror" -version = "1.0.62" +version = "1.0.63" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f2675633b1499176c2dff06b0856a27976a8f9d436737b4cf4f312d4d91d8bbb" +checksum = "c0342370b38b6a11b6cc11d6a805569958d54cfa061a29969c3b5ce2ea405724" dependencies = [ "thiserror-impl", ] [[package]] name = "thiserror-impl" -version = "1.0.62" +version = "1.0.63" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d20468752b09f49e909e55a5d338caa8bedf615594e9d80bc4c565d30faf798c" +checksum = "a4558b58466b9ad7ca0f102865eccc95938dca1a74a856f2b57b6629050da261" dependencies = [ "proc-macro2", "quote", diff --git a/Cargo.toml b/Cargo.toml index 86e78e4..843213d 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "c2ncl" -version = "0.0.2" +version = "0.0.3" edition = "2021" authors = ["Next Hat Contributors "] description = "Converts docker-compose.yml v2+ to nanocl StateFile.yml" diff --git a/changelog.md b/changelog.md index d50e7f5..af78a26 100644 --- a/changelog.md +++ b/changelog.md @@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [0.0.3] - 2024-07-17 + +### Chore + +- Update nanocl_stubs to v0.15 + ## [0.0.2] 2023-05-22 ### Added