Skip to content

Commit

Permalink
Bump version to 1.0.0 (#136)
Browse files Browse the repository at this point in the history
  • Loading branch information
hpmellema committed Mar 27, 2024
1 parent 722decb commit 31feeb8
Show file tree
Hide file tree
Showing 31 changed files with 45 additions and 31 deletions.
14 changes: 14 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,19 @@
# Smithy Gradle Plugin Changelog

## 1.0.0 (2024-03-26)

### Features
* Added `SmithySelectTask` to enable use of `select` command within Gradle projects ([#135](https://github.com/smithy-lang/smithy-gradle-plugin/pull/135))
* Merged the`SmithyBaseTask` with the `AbstractSmithyCliTask` to remove unecessary indirection ([#134](https://github.com/smithy-lang/smithy-gradle-plugin/pull/134))
* Refactored the `SmithyValidateTask` task to be under the `smithy-base` plugin to enable the use of the validation task outside of `smithy-jar` task ([#133](https://github.com/smithy-lang/smithy-gradle-plugin/pull/133))
* Added a severity option to the `validate` task to allow setting a minimum severity to print. ([#131](https://github.com/smithy-lang/smithy-gradle-plugin/pull/131))
* Added an exception on implicit empty smithy-build config. ([#123](https://github.com/smithy-lang/smithy-gradle-plugin/pull/123), [#128](https://github.com/smithy-lang/smithy-gradle-plugin/pull/128))
* Made the `smithyCli` configuration visible to enable pinning of the CLI version. ([#130](https://github.com/smithy-lang/smithy-gradle-plugin/pull/130))

### Bug Fixes
* Added a quiet flag to smithy CLI commands when gradle quiet flag is set to stop printing validation events when quieted. ([#132](https://github.com/smithy-lang/smithy-gradle-plugin/pull/132))


## 0.10.1 (2024-03-12)

### Features
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ This plugin can be applied to a project as follows:
```kotlin
// build.gradle.kts
plugins {
id("software.amazon.smithy.gradle.smithy-base").version("0.10.1")
id("software.amazon.smithy.gradle.smithy-base").version("1.0.0")
}
```
However, no tasks will be created unless.
Expand All @@ -72,7 +72,7 @@ The `smithy-jar` plugin must be used with another plugin that creates a `jar` ta
// build.gradle.kts
plugins {
id("java-library") // creates jar task
id("software.amazon.smithy.gradle.smithy-jar").version("0.10.1")
id("software.amazon.smithy.gradle.smithy-jar").version("1.0.0")
}
```

Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.10.1
1.0.0
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

plugins {
`java-library`
id("software.amazon.smithy.gradle.smithy-base").version("0.10.1")
id("software.amazon.smithy.gradle.smithy-base").version("1.0.0")
}

repositories {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

plugins {
`java-library`
id("software.amazon.smithy.gradle.smithy-base").version("0.10.1")
id("software.amazon.smithy.gradle.smithy-base").version("1.0.0")
}

repositories {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

plugins {
`java-library`
id("software.amazon.smithy.gradle.smithy-base").version("0.10.1")
id("software.amazon.smithy.gradle.smithy-base").version("1.0.0")
}

repositories {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
plugins {
`java-library`
id("software.amazon.smithy.gradle.smithy-base").version("0.10.1")
id("software.amazon.smithy.gradle.smithy-base").version("1.0.0")
}

repositories {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

plugins {
id("java-library")
id("software.amazon.smithy.gradle.smithy-base").version("0.10.1")
id("software.amazon.smithy.gradle.smithy-base").version("1.0.0")
}

sourceSets {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

plugins {
id("java-library")
id("software.amazon.smithy.gradle.smithy-base").version("0.10.1")
id("software.amazon.smithy.gradle.smithy-base").version("1.0.0")
}

repositories {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

plugins {
id("java-library")
id("software.amazon.smithy.gradle.smithy-base").version("0.10.1")
id("software.amazon.smithy.gradle.smithy-base").version("1.0.0")
}


Expand Down
2 changes: 1 addition & 1 deletion examples/base-plugin/output-directory/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

plugins {
id("java-library")
id("software.amazon.smithy.gradle.smithy-base").version("0.10.1")
id("software.amazon.smithy.gradle.smithy-base").version("1.0.0")
}

repositories {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

plugins {
id("java-library")
id("software.amazon.smithy.gradle.smithy-base").version("0.10.1")
id("software.amazon.smithy.gradle.smithy-base").version("1.0.0")
}

repositories {
Expand Down
2 changes: 1 addition & 1 deletion examples/base-plugin/smithy-build-task/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import software.amazon.smithy.gradle.tasks.SmithyBuildTask
// and the classpath used when building.

plugins {
id("software.amazon.smithy.gradle.smithy-base").version("0.10.1")
id("software.amazon.smithy.gradle.smithy-base").version("1.0.0")
}

tasks.create<SmithyBuildTask>("doit") {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

plugins {
id("java-library")
id("software.amazon.smithy.gradle.smithy-base").version("0.10.1")
id("software.amazon.smithy.gradle.smithy-base").version("1.0.0")
}

dependencies {
Expand Down
2 changes: 1 addition & 1 deletion examples/jar-plugin/adds-tags/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

plugins {
id("java-library")
id("software.amazon.smithy.gradle.smithy-jar").version("0.10.1")
id("software.amazon.smithy.gradle.smithy-jar").version("1.0.0")
}

group = "software.amazon.smithy"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

plugins {
`java-library`
id("software.amazon.smithy.gradle.smithy-jar").version("0.10.1")
id("software.amazon.smithy.gradle.smithy-jar").version("1.0.0")
}

repositories {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

plugins {
`java-library`
id("software.amazon.smithy.gradle.smithy-jar").version("0.10.1")
id("software.amazon.smithy.gradle.smithy-jar").version("1.0.0")
}

repositories {
Expand Down
2 changes: 1 addition & 1 deletion examples/jar-plugin/custom-trait/consumer/build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
plugins {
id("java-library")
id("software.amazon.smithy.gradle.smithy-jar").version("0.10.1")
id("software.amazon.smithy.gradle.smithy-jar").version("1.0.0")
}


Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// This package defines a custom trait for use in other models
plugins {
id("java-library")
id("software.amazon.smithy.gradle.smithy-jar").version("0.10.1")
id("software.amazon.smithy.gradle.smithy-jar").version("1.0.0")
}

repositories {
Expand Down
2 changes: 1 addition & 1 deletion examples/jar-plugin/disable-jar/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

plugins {
id("java-library")
id("software.amazon.smithy.gradle.smithy-jar").version("0.10.1")
id("software.amazon.smithy.gradle.smithy-jar").version("1.0.0")
}

repositories {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

plugins {
id("java-library")
id("software.amazon.smithy.gradle.smithy-jar").version("0.10.1")
id("software.amazon.smithy.gradle.smithy-jar").version("1.0.0")
}

repositories {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

plugins {
id("java-library")
id("software.amazon.smithy.gradle.smithy-jar").version("0.10.1")
id("software.amazon.smithy.gradle.smithy-jar").version("1.0.0")
}

repositories {
Expand Down
2 changes: 1 addition & 1 deletion examples/jar-plugin/kotlin-jvm-project/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

plugins {
kotlin("jvm") version "1.9.0"
id("software.amazon.smithy.gradle.smithy-jar").version("0.10.1")
id("software.amazon.smithy.gradle.smithy-jar").version("1.0.0")
}

repositories {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
plugins {
id("software.amazon.smithy.gradle.smithy-jar").version("0.10.1")
id("software.amazon.smithy.gradle.smithy-jar").version("1.0.0")
}

dependencies {
Expand Down
2 changes: 1 addition & 1 deletion examples/jar-plugin/multiple-jars/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import software.amazon.smithy.gradle.tasks.SmithyJarStagingTask

plugins {
`java-library`
id("software.amazon.smithy.gradle.smithy-jar").version("0.10.1")
id("software.amazon.smithy.gradle.smithy-jar").version("1.0.0")
}

val buildTask: SmithyBuildTask = tasks.getByName<SmithyBuildTask>("smithyBuild")
Expand Down
2 changes: 1 addition & 1 deletion examples/jar-plugin/multiple-sources/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

plugins {
id("java-library")
id("software.amazon.smithy.gradle.smithy-jar").version("0.10.1")
id("software.amazon.smithy.gradle.smithy-jar").version("1.0.0")
}

repositories {
Expand Down
2 changes: 1 addition & 1 deletion examples/jar-plugin/no-models/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

plugins {
id("java-library")
id("software.amazon.smithy.gradle.smithy-jar").version("0.10.1")
id("software.amazon.smithy.gradle.smithy-jar").version("1.0.0")
}

group = "software.amazon.smithy"
Expand Down
2 changes: 1 addition & 1 deletion examples/jar-plugin/projection/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

plugins {
id("java-library")
id("software.amazon.smithy.gradle.smithy-jar").version("0.10.1")
id("software.amazon.smithy.gradle.smithy-jar").version("1.0.0")
}

repositories {
Expand Down
2 changes: 1 addition & 1 deletion examples/jar-plugin/projects-with-tags/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

plugins {
id("java-library")
id("software.amazon.smithy.gradle.smithy-jar").version("0.10.1")
id("software.amazon.smithy.gradle.smithy-jar").version("1.0.0")
}

repositories {
Expand Down
2 changes: 1 addition & 1 deletion examples/jar-plugin/scala-project/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

plugins {
scala
id("software.amazon.smithy.gradle.smithy-jar").version("0.10.1")
id("software.amazon.smithy.gradle.smithy-jar").version("1.0.0")
}

dependencies {
Expand Down
2 changes: 1 addition & 1 deletion examples/jar-plugin/source-projection/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

plugins {
id("java-library")
id("software.amazon.smithy.gradle.smithy-jar").version("0.10.1")
id("software.amazon.smithy.gradle.smithy-jar").version("1.0.0")
}

repositories {
Expand Down

0 comments on commit 31feeb8

Please sign in to comment.