Skip to content

Commit 820e799

Browse files
committed
chore: Bump version to 0.2.1
- Update version in Cargo.toml - Update version in README.md - Add changelog entry for v0.2.1 - Fix repository URLs and CI configuration
1 parent f2dadb9 commit 820e799

File tree

3 files changed

+15
-4
lines changed

3 files changed

+15
-4
lines changed

CHANGELOG.md

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,16 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [0.2.1] - 2025-07-31
11+
12+
### Fixed
13+
- Repository URLs updated to correct GitHub organization (RustSandbox/Credify)
14+
- GitHub Actions workflow to use correct secret name (CARGO_REGISTRY_TOKEN)
15+
- Code formatting issues resolved with cargo fmt
16+
17+
### Changed
18+
- Made CodeCov optional in CI to prevent build failures
19+
1020
## [0.2.0] - 2025-07-31
1121

1222
### Added
@@ -50,6 +60,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
5060
- Safe handling of all network errors
5161
- Proper timeout configuration for HTTP requests
5262

53-
[Unreleased]: https://github.com/RustSandbox/Credify/compare/v0.2.0...HEAD
63+
[Unreleased]: https://github.com/RustSandbox/Credify/compare/v0.2.1...HEAD
64+
[0.2.1]: https://github.com/RustSandbox/Credify/compare/v0.2.0...v0.2.1
5465
[0.2.0]: https://github.com/RustSandbox/Credify/compare/v0.1.0...v0.2.0
5566
[0.1.0]: https://github.com/RustSandbox/Credify/releases/tag/v0.1.0

Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "credify"
3-
version = "0.21"
3+
version = "0.2.1"
44
edition = "2021"
55
rust-version = "1.70"
66
authors = ["Hamze Ghalebi <hamze.ghalebi@gmail.com>"]
@@ -16,7 +16,7 @@ exclude = [
1616
".github/*",
1717
".gitignore",
1818
"tests/*",
19-
"benches/*",gi
19+
"benches/*",
2020
"target/*",
2121
"Cargo.lock",
2222
"credify_logo.png",

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ Add this to your `Cargo.toml`:
3131

3232
```toml
3333
[dependencies]
34-
credify = "0.2.0"
34+
credify = "0.2.1"
3535
```
3636

3737
Or use cargo add:

0 commit comments

Comments
 (0)