Skip to content

Commit

Permalink
chore(v0.3.0): update CHANGELOG & Cargo.toml (#14)
Browse files Browse the repository at this point in the history
* build: bump alloy version

* build: bump koba version to v0.3.0

* ref: apply clippy linting

* feat(ci): add CI job to publish koba on crates.io

* chore: add CODEOWNERS
  • Loading branch information
bidzyyys authored Dec 5, 2024
1 parent 3e578ce commit 05f2ccf
Show file tree
Hide file tree
Showing 9 changed files with 444 additions and 147 deletions.
1 change: 1 addition & 0 deletions .github/CODEOWNERS
Validating CODEOWNERS rules …
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
* @bidzyyys @qalisander @0xNeshi
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

0 comments on commit 05f2ccf

Please sign in to comment.