diff --git a/.github/workflows/create-release.yml b/.github/workflows/create-release.yml deleted file mode 100644 index 1f310ba..0000000 --- a/.github/workflows/create-release.yml +++ /dev/null @@ -1,40 +0,0 @@ -name: Create Release - -on: - workflow_dispatch: - inputs: - version: - description: "Release version (e.g. v1.2.3)" - required: true - -permissions: - contents: write - -jobs: - create_release: - runs-on: ubuntu-latest - - steps: - - uses: actions/checkout@v4 - - - name: Enforce user permissions - run: | - ALLOWED_USERS=("piratekev" "gsgalloway") - if [[ ! " ${ALLOWED_USERS[@]} " =~ " ${GITHUB_ACTOR} " ]]; then - echo "❌ User $GITHUB_ACTOR is not allowed to run this workflow." - exit 1 - fi - - - name: Create Git tag - run: | - git config user.name "${{ github.actor }}" - git config user.email "${{ github.actor }}@users.noreply.github.com" - git tag v${{ github.event.inputs.version }} - git push origin v${{ github.event.inputs.version }} - - - name: Create GitHub Release - uses: softprops/action-gh-release@v1 - with: - tag_name: ${{ github.event.inputs.version }} - name: Release ${{ github.event.inputs.version }} - generate_release_notes: true \ No newline at end of file diff --git a/CHANGELOG.md b/CHANGELOG.md index 0e00c11..14cfc3d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,4 @@ -# 0.0.2 (2025-04-07) +# 0.1.0 (2025-04-07) ### Features diff --git a/README.md b/README.md index 95e3c51..d0f735d 100644 --- a/README.md +++ b/README.md @@ -118,6 +118,6 @@ except WalrusAPIError as e: print(e) ``` -Contributing +### Contributing Contributions are welcome! Please submit a pull request or open an issue for any suggestions, improvements, or bug reports. diff --git a/pyproject.toml b/pyproject.toml index 94b45db..8435157 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "walrus-python" -version = "0.0.4" +version = "0.1.0" description = "Python SDK for Walrus, a decentralized blob storage protocol" authors = [{ name = "Kevin Ayling", email = "kevin@standardcryptovc.com" }] readme = "README.md"