diff --git a/CHANGELOG.md b/CHANGELOG.md index 5a42493..c3eb00d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -12,6 +12,13 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [1.0.2] - 2025-05-25 + +### Changed + +- Simplified package name regex +- Added more context to the invalid package name error + ## [1.0.1] - 2025-05-19 ### Added diff --git a/README.md b/README.md index 705f15f..07fd734 100644 --- a/README.md +++ b/README.md @@ -43,7 +43,7 @@ install: ```bash git clone 'https://github.com/cipherdothost/pkgdex.git' cd 'pkgdex' -git checkout 'v1.0.1' +git checkout 'v1.0.2' npm install make sudo make install diff --git a/docs/hosting.md b/docs/hosting.md index b3ef4bb..e7c51f8 100644 --- a/docs/hosting.md +++ b/docs/hosting.md @@ -52,7 +52,7 @@ git clone 'https://github.com/cipherdothost/pkgdex.git' cd 'pkgdex' # Switch to latest stable version. -git checkout 'v1.0.1' +git checkout 'v1.0.2' # Build the service. make diff --git a/internal/meta/meta.go b/internal/meta/meta.go index a476f05..130b6c1 100644 --- a/internal/meta/meta.go +++ b/internal/meta/meta.go @@ -28,5 +28,5 @@ const ( Contact string = "hello@cipher.host" // Version is the version of the service. - Version string = "1.0.1" + Version string = "1.0.2" )