Skip to content

chore(release): prepare for v0.4.0 #14

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

Merged
merged 1 commit into from
Jan 26, 2025
Merged
Show file tree
Hide file tree
Changes from all 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
20 changes: 20 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,26 @@

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

## [0.4.0] - 2025-01-26

### 🚀 Features

- *(errors)* Improve error handling with thiserror
- *(errors)* Replace eprintln with tracing logs
- Use dashmap for better concurrency
- Add remote JWKS decoder with improved configuration and error handling

### 📚 Documentation

- Add badges to README.md
- Simplify documentation and remove redundant examples
- Update README.md, fix badge links
- Update README.md

### 🧪 Testing

- Add integration test for remote jwks

## [0.3.0] - 2025-01-25

### 💼 Other
Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "axum-jwt-auth"
version = "0.3.0"
version = "0.4.0"
edition = "2021"
authors = ["Cole MacKenzie"]
description = "A simple JWT authentication middleware for Axum"
Expand Down
2 changes: 1 addition & 1 deletion RELEASING.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ cargo check # Ensure everything builds correctly

```bash
# Generate/update for new version
git cliff --tag v1.2.0 --prepend CHANGELOG.md
git cliff --prepend CHANGELOG.md --unreleased --tag v1.2.0
```

4. Create release branch and commit:
Expand Down
Loading