Skip to content
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
9 changes: 6 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,16 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [0.3.0] - unreleased
## [0.4.0] - unreleased

## [0.2.0] - 2025-11-02
## [0.3.0] - 2025-11-02

* [PR #3](https://github.com/itsallcode/simple-process/pull/3): Allow configuring log level
* [PR #9](https://github.com/itsallcode/simple-process/pull/9): Upgrade dependencies

## [0.2.0] - 2025-07-05

* [PR #3](https://github.com/itsallcode/simple-process/pull/3): Allow configuring log level

## [0.1.0] - 2025-06-028

* [PR #1](https://github.com/itsallcode/simple-process/pull/1): Initial release
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ Add dependency to your Gradle project:

```groovy
dependencies {
implementation 'org.itsallcode:simple-process:0.1.0'
implementation 'org.itsallcode:simple-process:0.3.0'
}
```

Expand All @@ -38,7 +38,7 @@ Add dependency to your Maven project:
<dependency>
<groupId>org.itsallcode</groupId>
<artifactId>simple-process</artifactId>
<version>0.1.0</version>
<version>0.3.0</version>
</dependency>
```

Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ plugins {
}

group = 'org.itsallcode'
version = '0.2.0'
version = '0.3.0'

repositories {
mavenCentral()
Expand Down