Skip to content

Commit

Permalink
🔖 Bump version to 1.4.0, update README and CHANGELOG
Browse files Browse the repository at this point in the history
  • Loading branch information
xgouchet committed Sep 27, 2023
1 parent 00d34f0 commit 474cacc
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 6 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Changelog

### `1.4.0` (2023/09/26)

#### `core`

- Add a reflexive factory to automatically forge data classes

### `1.3.2` (2022/05/05)

#### `core`
Expand Down
7 changes: 2 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -134,15 +134,12 @@ Contribution is fully welcome. Before submitting a Pull Request, please verify y

## Release History

### Latest Release: `1.3.2` (2022/05/05)
### Latest Release: `1.4.0` (2023/09/26)

#### `core`

- Add the `Forge.shuffle(String): String` and `Forge.shuffle(Array<T>): Array<T>` methods
- Add a reflexive factory to automatically forge data classes

#### `semantics`

- Add the `semantics` library providing some human readable fake Strings generation (names, lipsum, …)

## Donate

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,8 @@ fun Project.mavenConfig() {
publications.create("maven", MavenPublication::class.java) {
groupId = "com.github.xgouchet"
artifactId = project.name
version = "1.3.4"
version = "1.4.0"

from(components["kotlin"])
artifact(tasks.findByName("kotlinSourcesJar"))
artifact(tasks.findByName("generateJavadoc"))
Expand Down

0 comments on commit 474cacc

Please sign in to comment.