Skip to content
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
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "jwt-hack"
version = "2.0.0"
version = "2.1.0"
edition = "2021"
authors = ["hahwul"]
description = "Hack the JWT (JSON Web Token) - A tool for JWT security testing and token manipulation"
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ docker pull ghcr.io/hahwul/jwt-hack:latest

#### Docker Hub
```bash
docker pull hahwul/jwt-hack:v2.0.0
docker pull hahwul/jwt-hack:v2.1.0
```

## Features
Expand Down
2 changes: 1 addition & 1 deletion snap/snapcraft.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ base: core22
grade: stable
confinement: strict
license: MIT
version: v2.0.0
version: v2.1.0
architectures:
- build-on: amd64
- build-on: arm64
Expand Down
2 changes: 1 addition & 1 deletion src/printing/version.rs
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
// Version information for jwt-hack
pub const VERSION: &str = "v2.0.0";
pub const VERSION: &str = concat!("v", env!("CARGO_PKG_VERSION"));
Loading