Skip to content

Commit

Permalink
Prepare for release 0.5.0.
Browse files Browse the repository at this point in the history
  • Loading branch information
ZacSweers committed Jan 8, 2021
1 parent 0057137 commit 7a0f8f1
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 4 deletions.
3 changes: 1 addition & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,6 @@ jobs:
run: ./gradlew --stop && jps|grep -E 'KotlinCompileDaemon|GradleDaemon'| awk '{print $1}'| xargs kill -9
- name: Upload snapshot (main only)
run: |
./gradlew uploadArchives -PSONATYPE_NEXUS_USERNAME=${{ secrets.SonatypeUsername }} -PSONATYPE_NEXUS_PASSWORD=${{ secrets.SonatypePassword }}
cd redacted-compiler-gradle-plugin
./gradlew -p redacted-compiler-gradle-plugin uploadArchives -PSONATYPE_NEXUS_USERNAME=${{ secrets.SonatypeUsername }} -PSONATYPE_NEXUS_PASSWORD=${{ secrets.SonatypePassword }}
./gradlew uploadArchives -PSONATYPE_NEXUS_USERNAME=${{ secrets.SonatypeUsername }} -PSONATYPE_NEXUS_PASSWORD=${{ secrets.SonatypePassword }}
if: success() && github.ref == 'refs/heads/main' && github.event_name != 'pull_request' && matrix.ci_java_version == '1.8'
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,15 @@
Changelog
=========

0.5.0
------------

_2021-01-08_

* **New!** Experimental support for Kotlin IR. Note that IR is still incubating and subject to change.
* Update Kotlin to `1.4.21`.
* Tested up to JDK 15.

0.4.0
------------

Expand Down
1 change: 0 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,6 @@ Snapshots of the development version are available in [Sonatype's `snapshots` re

- Kotlin compiler plugins are not a stable API! Compiled outputs from this plugin _should_ be stable,
but usage in newer versions of kotlinc are not guaranteed to be stable.
- Doesn't support Kotlin IR yet. PRs welcome if anyone is ambitious [#22](https://github.com/ZacSweers/redacted-compiler-plugin/issues/22)
- IDE support is not currently possible. See [#8](https://github.com/ZacSweers/redacted-compiler-plugin/issues/8).

License
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ maven_publish_plugin_version=0.12.0
kapt.includeCompileClasspath=false

GROUP=dev.zacsweers.redacted
VERSION_NAME=1.0.0-SNAPSHOT
VERSION_NAME=0.5.0
POM_DESCRIPTION=A Kotlin compiler plugin that generates redacted toString() implementations.
POM_URL=https://github.com/ZacSweers/redacted-compiler-plugin/
POM_SCM_URL=https://github.com/ZacSweers/redacted-compiler-plugin/
Expand Down

0 comments on commit 7a0f8f1

Please sign in to comment.