Skip to content

Commit

Permalink
Version 1.0.5
Browse files Browse the repository at this point in the history
  • Loading branch information
mernst committed Jul 12, 2022
1 parent de9d10f commit f0b85e6
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Reflection-Util change log

## 1.0.5 (??)
## 1.0.5 (2022-07-12)

- Tested under JDK 17.

Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ In a gradle buildfile, write

```
dependencies {
implementation 'org.plumelib:reflection-util:1.0.4'
implementation 'org.plumelib:reflection-util:1.0.5'
}
```

Other build systems are [similar](https://search.maven.org/artifact/org.plumelib/reflection-util/1.0.4/jar).
Other build systems are [similar](https://search.maven.org/artifact/org.plumelib/reflection-util/1.0.5/jar).
6 changes: 3 additions & 3 deletions gradle/mavencentral.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -13,15 +13,15 @@
// * Browse to https://oss.sonatype.org/#stagingRepositories, complete the Maven Central release.
// * Stage changes.
// * Add a git tag:
// VER=1.0.4 && git commit -m "Version $VER" && git push && git tag -a v$VER -m "Version $VER" && git push && git push --tags
// * Make a GitHub release. Go to the GitHub releases page, make a release, call it "reflection-util 1.0.4", use text from ../CHANGELOG.md, attach the .jar file from ../build/libs/
// VER=1.0.5 && git commit -m "Version $VER" && git push && git tag -a v$VER -m "Version $VER" && git push && git push --tags
// * Make a GitHub release. Go to the GitHub releases page, make a release, call it "reflection-util 1.0.5", use text from ../CHANGELOG.md, attach the .jar file from ../build/libs/


apply plugin: 'maven-publish'
apply plugin: 'signing'

group "org.plumelib"
version "1.0.5-SNAPSHOT"
version "1.0.5"
final isSnapshot = version.contains('SNAPSHOT')

java {
Expand Down

0 comments on commit f0b85e6

Please sign in to comment.