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
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion docs/hosting.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion internal/meta/meta.go
Original file line number Diff line number Diff line change
Expand Up @@ -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"
)