Skip to content

Commit

Permalink
release 0.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
nesk committed Sep 21, 2023
1 parent 481f9ba commit df8c69b
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 8 deletions.
14 changes: 10 additions & 4 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,15 +7,21 @@ to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased]

## [0.1.1] - 2023-09-21

### Fixed

- The target version of generated JVM bytecode is now 1.8 instead of 11. (https://github.com/nesk/akkurate/issues/5)
- Suppress the warning about useless casts in generated accessors. (https://github.com/nesk/akkurate/issues/8)
- The target version of generated JVM bytecode is now 1.8 instead of 11.
([#5](https://github.com/nesk/akkurate/issues/5))
- Suppress the warning about useless casts in generated accessors.
([#8](https://github.com/nesk/akkurate/issues/8))

## [0.1.0] - 2023-09-12

First release

[unreleased]: https://github.com/nesk/akkurate/compare/v0.1.0...HEAD
[Unreleased]: https://github.com/nesk/akkurate/compare/0.1.1...HEAD

[0.1.1]: https://github.com/nesk/akkurate/compare/0.1.0...0.1.1

[0.1.0]: https://github.com/nesk/akkurate/releases/tag/v0.1.0
[0.1.0]: https://github.com/nesk/akkurate/releases/tag/0.1.0
2 changes: 1 addition & 1 deletion documentation/v.list
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<!DOCTYPE vars SYSTEM "https://resources.jetbrains.com/writerside/1.0/vars.dtd">
<vars>
<var name="product" value="Akkurate"/>
<var name="version" value="0.1.0"/>
<var name="version" value="0.1.1"/>
<var name="github_product_url" value="https://github.com/nesk/akkurate"/>
<var name="api_reference_url" value="https://akkurate.dev/api"/>
</vars>
2 changes: 1 addition & 1 deletion documentation/writerside.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,5 @@
<ihp version="2.0">
<topics dir="topics"/>
<images dir="images" web-path="images"/>
<instance src="akkurate.tree" version="0.1.0"/>
<instance src="akkurate.tree" version="0.1.1"/>
</ihp>
2 changes: 1 addition & 1 deletion library/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ plugins {
}

group = "dev.nesk.akkurate"
version = "0.1.0"
version = "0.1.1"

repositories {
mavenCentral()
Expand Down
2 changes: 1 addition & 1 deletion plugin/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ buildscript {
apply(plugin = "com.karumi.kotlin-snapshot")

group = "dev.nesk.akkurate"
version = "0.1.0"
version = "0.1.1"

repositories {
mavenCentral()
Expand Down

0 comments on commit df8c69b

Please sign in to comment.