Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(v0.3.0): update CHANGELOG & Cargo.toml #14

Merged
merged 5 commits into from
Dec 5, 2024
Merged
Show file tree
Hide file tree
Changes from 4 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
32 changes: 32 additions & 0 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
name: publish koba
# This workflow publishes koba on crates.io.
permissions:
contents: read
on:
push:
tags:
- v*
concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
cancel-in-progress: true
env:
CARGO_TERM_COLOR: always
jobs:
check-publish:
name: Publish koba on crates.io
env:
KOBA_TOKEN: ${{ secrets.KOBA_TOKEN }}
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4

- name: Install rust
uses: actions-rust-lang/setup-rust-toolchain@v1
with:
rustflags: ""

- name: Check koba
run: cargo publish -p koba --dry-run

- name: Publish koba
run: cargo publish -p koba --token $KOBA_TOKEN
10 changes: 7 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,12 @@

All notable changes to this project will be documented in this file.

## [0.3.0] - 2024-12-05

### Changed (Breaking)

- *(build)* Bump alloy to v0.7.12

## [0.2.0] - 2024-08-06

### Features
Expand All @@ -20,7 +26,7 @@ All notable changes to this project will be documented in this file.

### Bug Fixes

- Set inifinite balance when computing activation fee
- Set infinite balance when computing activation fee


### Features
Expand Down Expand Up @@ -73,5 +79,3 @@ All notable changes to this project will be documented in this file.
### Build

- Use the published version of alloy


Loading