Skip to content

Commit

Permalink
release 0.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
nesk committed Oct 30, 2023
1 parent f0d37d8 commit 1d74d2f
Show file tree
Hide file tree
Showing 7 changed files with 12 additions and 9 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/deploy-website.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ env:
ALGOLIA_INDEX_NAME: akkurate
ALGOLIA_KEY: ${{ secrets.ALGOLIA_KEY }}
CONFIG_JSON_PRODUCT: AKKURATE
CONFIG_JSON_VERSION: 0.3.0
CONFIG_JSON_VERSION: 0.4.0

jobs:
build-documentation:
Expand Down
5 changes: 4 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,8 @@ to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased]

## [0.4.0] - 2023-10-30

### ⚠️ Breaking changes

- The `Configuration` class is now instantiated through a builder DSL ([#13](https://github.com/nesk/akkurate/issues/13))
Expand Down Expand Up @@ -78,7 +80,8 @@ to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

First release

[Unreleased]: https://github.com/nesk/akkurate/compare/0.3.0...HEAD
[Unreleased]: https://github.com/nesk/akkurate/compare/0.4.0...HEAD
[0.4.0]: https://github.com/nesk/akkurate/compare/0.3.0...0.4.0
[0.3.0]: https://github.com/nesk/akkurate/compare/0.2.0...0.3.0
[0.2.0]: https://github.com/nesk/akkurate/compare/0.1.1...0.2.0
[0.1.1]: https://github.com/nesk/akkurate/compare/0.1.0...0.1.1
Expand Down
6 changes: 3 additions & 3 deletions documentation/topics/migration-guide.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,14 @@
Some breaking changes might happen sometimes, especially until %product% reaches its first stable version. Here you can
find how to migrate to a new version containing breaking changes.

## #unreleased#
## Version 0.4.0

The `Configuration`
declaration [is no longer a data class.](https://kotlinlang.org/docs/jvm-api-guidelines-backward-compatibility.html#don-t-use-data-classes-in-an-api)
To create a new configuration, use the following builder DSL:

<tabs>
<tab title="After v#unreleased#">
<tab title="After v0.4.0">

```kotlin
Configuration {
Expand All @@ -20,7 +20,7 @@ Configuration {
```

</tab>
<tab title="Before v#unreleased#">
<tab title="Before v0.4.0">

```kotlin
Configuration(
Expand Down
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.3.0"/>
<var name="version" value="0.4.0"/>
<var name="github_product_url" value="https://github.com/nesk/akkurate"/>
<var name="roadmap_url" value="https://github.com/users/nesk/projects/1/views/1"/>
<var name="api_reference_url" value="https://akkurate.dev/api"/>
Expand Down
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.3.0"/>
<instance src="akkurate.tree" version="0.4.0"/>
</ihp>
2 changes: 1 addition & 1 deletion library/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ plugins {
}

group = "dev.nesk.akkurate"
version = "0.3.0"
version = "0.4.0"

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 @@ -17,7 +17,7 @@ buildscript {
apply(plugin = "com.karumi.kotlin-snapshot")

group = "dev.nesk.akkurate"
version = "0.3.0"
version = "0.4.0"

repositories {
mavenCentral()
Expand Down

0 comments on commit 1d74d2f

Please sign in to comment.