From fe3c60f71cb4d6ecf834ed3365e496b4087c3846 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Crozet?= Date: Fri, 16 May 2025 09:13:17 +0200 Subject: [PATCH 1/4] Release v0.2.0 --- CHANGELOG.md | 7 +++++++ Cargo.toml | 2 +- 2 files changed, 8 insertions(+), 1 deletion(-) create mode 100644 CHANGELOG.md diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 0000000..71ec532 --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,7 @@ +## 0.2.0 + +- Redges is now a public repository under dual Apache v2/Commercial license. + +## 0.1.0 + +- Initial release implementing the Radial Edge data-structure (see details on the readme). \ No newline at end of file diff --git a/Cargo.toml b/Cargo.toml index 3ec04ef..6bf03c4 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "redges" -version = "0.1.1" +version = "0.2.0" edition = "2021" license = "Apache-2.0 OR Custom" authors = ["Camilo Talero "] From c01012fa6b121e64b1b545e9e16eaece48f9864a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Crozet?= Date: Fri, 16 May 2025 09:13:25 +0200 Subject: [PATCH 2/4] chore: add publish CI --- .github/workflows/release.yml | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 .github/workflows/release.yml diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml new file mode 100644 index 0000000..3be28c8 --- /dev/null +++ b/.github/workflows/release.yml @@ -0,0 +1,22 @@ +name: Release Pipeline + +on: + pull_request: + push: + branches: + - main + workflow_dispatch: + inputs: + publish: + type: boolean + required: false + description: Trigger with publish + +jobs: + publish: + uses: ForesightMiningSoftwareCorporation/github/.github/workflows/rust-build.yml@v1 + with: + skip-test: ${{ github.event_name == 'push' && 'true' || (github.event_name == 'workflow_dispatch' && inputs.publish) }} + publish: ${{ (github.event_name == 'push' || (github.event_name == 'workflow_dispatch' && inputs.publish)) && 'true' || 'false' }} + publish_public_registry: true + secrets: inherit From b01013783b522ccb8e4978ad9dde4b978d61019c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Crozet?= Date: Fri, 16 May 2025 09:45:44 +0200 Subject: [PATCH 3/4] fix: add missing cargo metadata --- Cargo.toml | 1 + 1 file changed, 1 insertion(+) diff --git a/Cargo.toml b/Cargo.toml index 6bf03c4..bbf2b39 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -28,5 +28,6 @@ inherits = "release" debug = true [package.metadata.fslabs.publish.cargo] +allow_public = true publish = true From c0af47c65439d04e46afd57a93641a6bb5a52ed4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lo=C3=AFs=20Postula?= Date: Fri, 16 May 2025 09:48:20 +0200 Subject: [PATCH 4/4] Delete .github/workflows/release.yml --- .github/workflows/release.yml | 22 ---------------------- 1 file changed, 22 deletions(-) delete mode 100644 .github/workflows/release.yml diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml deleted file mode 100644 index 3be28c8..0000000 --- a/.github/workflows/release.yml +++ /dev/null @@ -1,22 +0,0 @@ -name: Release Pipeline - -on: - pull_request: - push: - branches: - - main - workflow_dispatch: - inputs: - publish: - type: boolean - required: false - description: Trigger with publish - -jobs: - publish: - uses: ForesightMiningSoftwareCorporation/github/.github/workflows/rust-build.yml@v1 - with: - skip-test: ${{ github.event_name == 'push' && 'true' || (github.event_name == 'workflow_dispatch' && inputs.publish) }} - publish: ${{ (github.event_name == 'push' || (github.event_name == 'workflow_dispatch' && inputs.publish)) && 'true' || 'false' }} - publish_public_registry: true - secrets: inherit