Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

pre-release prep for v0.2.0 #112

Merged
merged 1 commit into from
Nov 23, 2024
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
5 changes: 3 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).

## [Unreleased]
## [v0.2.0] - 2024-11-23

### Added

Expand Down Expand Up @@ -50,5 +50,6 @@ Initial release
- Add links `opportunities` and `create-order` to Product
- Add link `create-order` to OpportunityCollection

[unreleased]: https://github.com/stapi-spec/stapi-fastapi/compare/v0.1.0...main
[unreleased]: https://github.com/stapi-spec/stapi-fastapi/compare/v0.2.0...main
[v0.2.0]: https://github.com/stapi-spec/stapi-fastapi/tree/v0.2.0
[v0.1.0]: https://github.com/stapi-spec/stapi-fastapi/tree/v0.1.0
4 changes: 2 additions & 2 deletions src/stapi_fastapi/models/conformance.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
from pydantic import BaseModel, Field

CORE = "https://stapi.example.com/v0.1.0/core"
OPPORTUNITIES = "https://stapi.example.com/v0.1.0/opportunities"
CORE = "https://stapi.example.com/v0.2.0/core"
OPPORTUNITIES = "https://stapi.example.com/v0.2.0/opportunities"


class Conformance(BaseModel):
Expand Down