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
18 changes: 15 additions & 3 deletions CHANGELOG/CHANGELOG-1.x.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,19 @@ Date format: `YYYY-MM-DD`

---

## [1.48.1] - 2026-09-02

### Added
### Changed
- **debt:** Upgraded dependencies to their latest stable versions.

### Deprecated
### Removed
### Fixed
### Security

---

## [1.48.0] - 2026-08-22

### Added
Expand All @@ -34,8 +47,6 @@ Date format: `YYYY-MM-DD`

---

---

## [1.47.6] - 2026-08-13

### Added
Expand Down Expand Up @@ -869,7 +880,8 @@ Date format: `YYYY-MM-DD`
### Fixed
### Security

[Unreleased]: https://github.com/sixafter/nanoid-cli/compare/v1.48.0...HEAD
[Unreleased]: https://github.com/sixafter/nanoid-cli/compare/v1.48.1...HEAD
[1.48.1]: https://github.com/sixafter/nanoid-cli/compare/v1.48.0...v1.48.1
[1.48.0]: https://github.com/sixafter/nanoid-cli/compare/v1.47.6...v1.48.0
[1.47.6]: https://github.com/sixafter/nanoid-cli/compare/v1.47.5...v1.47.6
[1.47.5]: https://github.com/sixafter/nanoid-cli/compare/v1.47.4...v1.47.5
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,10 +34,10 @@ using the [NanoID](https://github.com/sixafter/nanoid) Go implementation.
To verify the integrity of the release, you can use Cosign to check the signature and checksums. Follow these steps:

```sh
# Fetch the latest release tag from GitHub API (e.g., "v1.48.0")
# Fetch the latest release tag from GitHub API (e.g., "v1.48.1")
TAG=$(curl -s https://api.github.com/repos/sixafter/nanoid-cli/releases/latest | jq -r .tag_name)

# Remove leading "v" for filenames (e.g., "v1.48.0" -> "1.48.0")
# Remove leading "v" for filenames (e.g., "v1.48.1" -> "1.48.1")
VERSION=${TAG#v}

# ---------------------------------------------------------------------
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ go 1.27
require (
github.com/dustin/go-humanize v1.0.1
github.com/sixafter/nanoid v1.65.0
github.com/sixafter/semver v1.12.1
github.com/sixafter/semver v1.13.0
github.com/spf13/cobra v1.10.2
github.com/stretchr/testify v1.12.1
)
Expand Down
4 changes: 2 additions & 2 deletions go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ github.com/sixafter/nanoid v1.65.0 h1:hxYijATxxPiVTO7viWkRiGl5ndjjfnLQqf+B0BWzTI
github.com/sixafter/nanoid v1.65.0/go.mod h1:d35G7hOeeLqtHpAZhpivOUXZ69HnVrMYYfy6zsgicH8=
github.com/sixafter/prng-chacha v1.17.0 h1:jDmy8RUOHv1mMDX/vHlnj/V6nwIWIe3d1yzQBGeFW2o=
github.com/sixafter/prng-chacha v1.17.0/go.mod h1:FmglEI3IjFfFOCFLKHpkv1jVCw6WmZI2JPnaSJAiZ5w=
github.com/sixafter/semver v1.12.1 h1:dgA+B5zhJ+xQMuzRtC5lm6fmrZIA+WBVx0p9yvsBFl4=
github.com/sixafter/semver v1.12.1/go.mod h1:f8opmUKKzjE6lAlQfFRjM1uiVGH6qJ3FF2CafaF+qtQ=
github.com/sixafter/semver v1.13.0 h1:R9DUaRrGaXw5yGQGCdkGHNmM3VI2CEKX8a3ksGKUxTM=
github.com/sixafter/semver v1.13.0/go.mod h1:Ql/w/DodZgY00w4u5KxPMt39XT7AfjyZtghWwyFZ7Mw=
github.com/spf13/cobra v1.10.2 h1:DMTTonx5m65Ic0GOoRY2c16WCbHxOOw6xxezuLaBpcU=
github.com/spf13/cobra v1.10.2/go.mod h1:7C1pvHqHw5A4vrJfjNwvOdzYu0Gml16OCs2GRiTUUS4=
github.com/spf13/pflag v1.0.9/go.mod h1:McXfInJRrz4CZXVZOBLb0bTZqETkiAhM9Iw0y3An2Bg=
Expand Down
17 changes: 16 additions & 1 deletion vendor/github.com/sixafter/semver/CHANGELOG.md

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions vendor/github.com/sixafter/semver/README.md

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions vendor/modules.txt
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ github.com/sixafter/nanoid
# github.com/sixafter/prng-chacha v1.17.0
## explicit; go 1.27
github.com/sixafter/prng-chacha
# github.com/sixafter/semver v1.12.1
## explicit; go 1.25
# github.com/sixafter/semver v1.13.0
## explicit; go 1.27
github.com/sixafter/semver
# github.com/spf13/cobra v1.10.2
## explicit; go 1.15
Expand Down