Skip to content

Commit

Permalink
docs: Update CHANGELOG
Browse files Browse the repository at this point in the history
  • Loading branch information
Luukuton committed Apr 15, 2022
1 parent 1817b9d commit d5e49ae
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 1 deletion.
17 changes: 17 additions & 0 deletions docs/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,23 @@ All notable changes of this project will be documented in this file.

> The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
## [0.4.0] - 2022-04-15

### Added
- Periodically prune the gallery cache of old entries
- Time to live can be configured via `MTSU_CACHE_TTL` environment variable. Defaults to 336h (14 days)
- Utilizes mutex to prevent reading and deleting the same entry at the same time
- Environmental variable to disable migrations `MTSU_DB_MIGRATIONS=false`
- Environment variable to override the default database name: `MTSU_DB=mangatsu`
- Embedded migrations to binary

### Changed
- Updated dependencies

### Docs
- Cross out 7z in README as it's not supported yet
- Fix mistakes in example.env and ENVIRONMENTALS.md

## [0.3.1] - 2022-03-24

### Fixed
Expand Down
2 changes: 1 addition & 1 deletion pkg/api/api.go
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ func returnInfo(w http.ResponseWriter, _ *http.Request) {
Registrations bool
}{
APIVersion: 1,
ServerVersion: "0.3.1",
ServerVersion: "0.4.0",
Visibility: string(config.Options.Visibility),
Registrations: config.Options.Registrations,
})
Expand Down

0 comments on commit d5e49ae

Please sign in to comment.