diff --git a/.github/workflows/publish-casper-client-deb.yml b/.github/workflows/publish-casper-client-deb.yml index 88a9532..13afd0a 100644 --- a/.github/workflows/publish-casper-client-deb.yml +++ b/.github/workflows/publish-casper-client-deb.yml @@ -82,12 +82,3 @@ jobs: - name: Invalidate CloudFront cache run: | aws cloudfront create-invalidation --distribution-id ${{ secrets.AWS_CLOUDFRONT_REPO }} --paths "/*" - - - name: Upload binaries to release - uses: svenstaro/upload-release-action@v2 - with: - repo_token: ${{ secrets.GITHUB_TOKEN }} - file: target/debian/casper-client* - tag: ${{ github.ref }} - overwrite: true - file_glob: true diff --git a/Cargo.lock b/Cargo.lock index 3c9c97d..f04f85e 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -220,7 +220,7 @@ checksum = "d71b6127be86fdcfddb610f7182ac57211d4b18a3e9c82eb2d17662f2227ad6a" [[package]] name = "casper-client" -version = "4.0.0" +version = "5.0.0" dependencies = [ "async-trait", "base16", diff --git a/Cargo.toml b/Cargo.toml index 769e620..4a87716 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,16 +1,14 @@ [package] name = "casper-client" -version = "4.0.0" # when updating, also update 'html_root_url' in lib.rs +version = "5.0.0" # when updating, also update 'html_root_url' in lib.rs authors = [ - "Marc Brinkmann ", - "Fraser Hutchison ", - "Zachary Showalter ", + "Karan Dhareshwar ", ] edition = "2021" description = "A client library and binary for interacting with the Casper network" documentation = "https://docs.rs/casper-client" readme = "README.md" -homepage = "https://casperlabs.io" +homepage = "https://casper.network" repository = "https://github.com/casper-ecosystem/casper-client-rs" license = "Apache-2.0" diff --git a/lib/lib.rs b/lib/lib.rs index 35c42a9..7a5687d 100644 --- a/lib/lib.rs +++ b/lib/lib.rs @@ -23,7 +23,7 @@ //! latest `Block` known on the server will be used. #![doc( - html_root_url = "https://docs.rs/casper-client/4.0.0", + html_root_url = "https://docs.rs/casper-client/5.0.0", html_favicon_url = "https://raw.githubusercontent.com/casper-network/casper-node/master/images/CasperLabs_Logo_Favicon_RGB_50px.png", html_logo_url = "https://raw.githubusercontent.com/casper-network/casper-node/master/images/CasperLabs_Logo_Symbol_RGB.png", test(attr(forbid(warnings)))