Skip to content

Commit

Permalink
Fix changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
brendan-oconnell committed Oct 3, 2024
1 parent 7f912b6 commit cc437b5
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@ 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).

## [Unreleased]
### Fixed
- [324](https://github.com/thoth-pub/thoth/issues/324) - Make Locations editable, including the ability to change the Canonical Location for a Publication

## [[0.12.10]](https://github.com/thoth-pub/thoth/releases/tag/v0.12.10) - 2024-10-01
### Added
Expand All @@ -19,7 +21,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

### Fixed
- [565](https://github.com/thoth-pub/thoth/issues/565) - Don't generate Crossref metadata output if no DOIs (work or chapter) are present
- [324](https://github.com/thoth-pub/thoth/issues/324) - Make Locations editable, including the ability to change the Canonical Location for a Publication
- [632](https://github.com/thoth-pub/thoth/pull/632) - Add second order by clause (work\_id) to work queries for consistent ordering when multiple works share the same user-ordered field, such as publication date

## [[0.12.9]](https://github.com/thoth-pub/thoth/releases/tag/v0.12.9) - 2024-09-06
Expand Down
2 changes: 1 addition & 1 deletion thoth-api/src/model/location/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -259,7 +259,7 @@ impl From<Location> for PatchLocation {
fn test_location_to_patch_location() {
let location = Location {
location_id: Uuid::parse_str("00000000-0000-0000-AAAA-000000000001").unwrap(),
publication_id: Uuid::new_v4(),
publication_id: Uuid::parse_str("00000000-0000-0000-AAAA-000000000002").unwrap(),
landing_page: Some("https://www.book.com/pb_landing".to_string()),
full_text_url: Some("https://example.com/full_text.pdf".to_string()),
location_platform: LocationPlatform::PublisherWebsite,
Expand Down

0 comments on commit cc437b5

Please sign in to comment.