Skip to content

Commit

Permalink
bump version to 0.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
memo33 committed Nov 19, 2023
1 parent e5e4222 commit b42c924
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 6 deletions.
10 changes: 7 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,13 @@
# Changelog

## [Unreleased]

## [0.3.0] - 2023-11-19
### Added
- experimental basic authentication to Simtropolis using `SC4PAC_SIMTROPOLIS_COOKIE` environment variable
- an [API](api.md) for programs
- an [API](api.md) for external programs
- new command `sc4pac server` for use with the API
- experimental basic authentication to Simtropolis using `SC4PAC_SIMTROPOLIS_COOKIE` environment variable
[(usage)](https://github.com/memo33/sc4pac-tools/blob/e5e422252457ababdce450cdadda499a6bfa7dde/src/main/scala/sc4pac/Constants.scala#L39-L57)

### Fixed
- an issue involving local `file:/` URIs
Expand Down Expand Up @@ -34,6 +37,7 @@
## [0.1.5] - 2023-09-26

[Unreleased]: https://github.com/memo33/sc4pac-tools/compare/0.2.0...HEAD
[Unreleased]: https://github.com/memo33/sc4pac-tools/compare/0.3.0...HEAD
[0.3.0]: https://github.com/memo33/sc4pac-tools/compare/0.2.0...0.3.0
[0.2.0]: https://github.com/memo33/sc4pac-tools/compare/0.1.5...0.2.0
[0.1.5]: https://github.com/memo33/sc4pac-tools/compare/0.1.4...0.1.5
4 changes: 2 additions & 2 deletions api.md
Original file line number Diff line number Diff line change
Expand Up @@ -265,7 +265,7 @@ The `responses` field contains the valid response message objects to send back t
],
choices: ["Yes", "No"],
token: string,
"responses": {"Yes": object, "No": object, …}
"responses": {"Yes": object, "No": object}
}
```

Expand All @@ -276,7 +276,7 @@ The `responses` field contains the valid response message objects to send back t
"warnings": {"<pkg>": ["warnings-1", "warning-2", …], …},
choices: ["Yes", "No"],
token: string,
"responses": {"Yes": object, "No": object, …}
"responses": {"Yes": object, "No": object}
}
```

Expand Down
2 changes: 1 addition & 1 deletion build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name := "sc4pac"

ThisBuild / organization := "io.github.memo33"

ThisBuild / version := "0.2.1-SNAPSHOT"
ThisBuild / version := "0.3.0"

// ThisBuild / versionScheme := Some("early-semver")

Expand Down

0 comments on commit b42c924

Please sign in to comment.