Skip to content

Commit

Permalink
Prepare for release 0.20.0.
Browse files Browse the repository at this point in the history
  • Loading branch information
ZacSweers committed Oct 11, 2024
1 parent a6aa53f commit 038fd3e
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 2 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,11 @@ Changelog
**Unreleased**
--------------

0.20.0
------

_2024-09-25_

### Project Restructuring

We've restructured this project! Since its early days as a simple Gradle convention plugin it's expanded into IntelliJ plugins, CLIs, CI tooling, and more. To better capture this, we've renamed the project to *Foundry*, restructured its artifacts into a more cohesive setup, moved kotlin-cli-util into this repo, and will likely split out some more artifacts down the line.
Expand All @@ -17,6 +22,7 @@ We've restructured this project! Since its early days as a simple Gradle convent
- Download `mapping.txt`
- Download `property_migration.sh`
- Run `./property_migration.sh mapping.txt <path to target project>`.
- Note this only covers `*.kts` and `*.properties` files. This does not cover args passed via CLI or envs.

- Package names have all aligned to `foundry.*`. In most cases it should be simple enough to replace `import com.slack.*` with `import foundry.*`.
- Gradle coordinates group have moved to the `com.slack.foundry` group name.
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -48,4 +48,4 @@ POM_DEVELOPER_ID=slackhq
POM_DEVELOPER_NAME=Slack Technologies, Inc.
POM_DEVELOPER_URL=https://github.com/slackhq
POM_INCEPTION_YEAR=2022
VERSION_NAME=1.0.0-SNAPSHOT
VERSION_NAME=0.20.0
2 changes: 1 addition & 1 deletion release.sh
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ git commit -am "Prepare for release $NEW_VERSION."
git tag -a "$NEW_VERSION" -m "Version $NEW_VERSION"

# Publish
./gradlew publish -x dokkaHtml --no-configuration-cache
./gradlew publish -x dokkaHtml --no-configuration-cache -PSONATYPE_CONNECT_TIMEOUT_SECONDS=300

# Prepare next snapshot
echo "Restoring snapshot version $SNAPSHOT_VERSION"
Expand Down

0 comments on commit 038fd3e

Please sign in to comment.