Skip to content

Commit

Permalink
Prepare for next release.
Browse files Browse the repository at this point in the history
  • Loading branch information
baron1405 committed Oct 26, 2024
1 parent 069a356 commit 30576b1
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 5 deletions.
8 changes: 6 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,15 +7,19 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [unreleased]

## [2.0.0] - 2024-10-25

### Changed

- Use cthing-projectversion library `ProjectVersion` object for project version
- The library has been migrated from JSR 305 to [JSpecify](https://jspecify.dev/) for `null` checking
- The build now uses the [dependency-analysis-gradle-plugin](https://github.com/autonomousapps/dependency-analysis-gradle-plugin)

## [1.0.0] - 2024-04-14

### Added

- First release

[unreleased]: https://github.com/cthing/filevisitor/compare/1.0.0...HEAD
[unreleased]: https://github.com/cthing/filevisitor/compare/2.0.0...HEAD
[2.0.0]: https://github.com/cthing/filevisitor/releases/tag/2.0.0
[1.0.0]: https://github.com/cthing/filevisitor/releases/tag/1.0.0
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,12 +14,12 @@ the following Maven dependency:
<dependency>
<groupId>org.cthing</groupId>
<artifactId>filevisitor</artifactId>
<version>1.0.0</version>
<version>2.0.0</version>
</dependency>
```
or the following Gradle dependency:
```kotlin
implementation("org.cthing:filevisitor:1.0.0")
implementation("org.cthing:filevisitor:2.0.0")
```

### File Tree Traversal
Expand Down
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ plugins {
alias(libs.plugins.versions)
}

version = ProjectVersion("2.0.0", BuildType.release)
version = ProjectVersion("2.0.1", BuildType.snapshot)
group = "org.cthing"
description = "An implementation of the Java FileVisitor with Glob pattern matching and more."

Expand Down

0 comments on commit 30576b1

Please sign in to comment.