Skip to content

Commit

Permalink
Bump version to 1.0.2
Browse files Browse the repository at this point in the history
  • Loading branch information
kstich committed May 18, 2020
1 parent 445e5ed commit 3a79e71
Show file tree
Hide file tree
Showing 5 changed files with 19 additions and 13 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Smithy Changelog

## 1.0.2 (2020-05-18)

### Bug Fixes

* Fix an issue that would squash exceptions thrown for invalid suppressions. ([#440](https://github.com/awslabs/smithy/pull/440))

## 1.0.1 (2020-05-13)

### Features
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.0.1
1.0.2
12 changes: 6 additions & 6 deletions docs/source/1.0/guides/building-models/gradle-plugin.rst
Original file line number Diff line number Diff line change
Expand Up @@ -151,12 +151,12 @@ The following example ``build.gradle.kts`` will build a Smithy model using a
}

dependencies {
implementation("software.amazon.smithy:smithy-model:1.0.1")
implementation("software.amazon.smithy:smithy-model:1.0.2")

// These are just examples of dependencies. This model has a dependency on
// a "common" model package and uses the external AWS traits.
implementation("com.foo.baz:foo-model-internal-common:1.0.0")
implementation("software.amazon.smithy:smithy-aws-traits:1.0.1")
implementation("software.amazon.smithy:smithy-aws-traits:1.0.2")
}


Expand Down Expand Up @@ -193,7 +193,7 @@ build that uses the "external" projection.
mavenCentral()
}
dependencies {
classpath("software.amazon.smithy:smithy-aws-traits:1.0.1")
classpath("software.amazon.smithy:smithy-aws-traits:1.0.2")

// Take a dependency on the internal model package. This
// dependency *must* be a buildscript only dependency to ensure
Expand All @@ -217,12 +217,12 @@ build that uses the "external" projection.
}

dependencies {
implementation("software.amazon.smithy:smithy-model:1.0.1")
implementation("software.amazon.smithy:smithy-model:1.0.2")

// Any dependencies that the projected model needs must be (re)declared
// here. For example, let's assume that the smithy-aws-traits package is
// needed in the projected model too.
implementation("software.amazon.smithy:smithy-aws-traits:1.0.1")
implementation("software.amazon.smithy:smithy-aws-traits:1.0.2")
}


Expand Down Expand Up @@ -345,7 +345,7 @@ The above Smithy plugin also requires a ``buildscript`` dependency in

// This dependency is required in order to apply the "openapi"
// plugin in smithy-build.json
classpath("software.amazon.smithy:smithy-openapi:1.0.1")
classpath("software.amazon.smithy:smithy-openapi:1.0.2")
}
}

Expand Down
8 changes: 4 additions & 4 deletions docs/source/1.0/guides/converting-to-openapi.rst
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ specification from a Smithy model using a buildscript dependency:
buildscript {
dependencies {
classpath("software.amazon.smithy:smithy-openapi:1.0.1")
classpath("software.amazon.smithy:smithy-openapi:1.0.2")
}
}
Expand All @@ -142,7 +142,7 @@ that builds an OpenAPI specification from a service for the
.. important::

A buildscript dependency on "software.amazon.smithy:smithy-openapi:1.0.1" is
A buildscript dependency on "software.amazon.smithy:smithy-openapi:1.0.2" is
required in order for smithy-build to map the "openapi" plugin name to the
correct Java library implementation.

Expand Down Expand Up @@ -634,7 +634,7 @@ dependency on ``software.amazon.smithy:smithy-aws-apigateway-openapi``.
buildscript {
dependencies {
classpath("software.amazon.smithy:smithy-aws-apigateway-openapi:1.0.1")
classpath("software.amazon.smithy:smithy-aws-apigateway-openapi:1.0.2")
}
}
Expand Down Expand Up @@ -1073,7 +1073,7 @@ shows how to install ``software.amazon.smithy:smithy-openapi`` through Gradle:
buildscript {
dependencies {
classpath("software.amazon.smithy:smithy-openapi:1.0.1")
classpath("software.amazon.smithy:smithy-openapi:1.0.2")
}
}
Expand Down
4 changes: 2 additions & 2 deletions docs/source/1.0/guides/model-linters.rst
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,8 @@ to a ``build.gradle.kts`` file:
.. code-tab:: kotlin

dependencies {
implementation("software.amazon.smithy:smithy-model:1.0.1")
implementation("software.amazon.smithy:smithy-linters:1.0.1")
implementation("software.amazon.smithy:smithy-model:1.0.2")
implementation("software.amazon.smithy:smithy-linters:1.0.2")
}

After the dependency is added and available on the Java classpath, validators
Expand Down

0 comments on commit 3a79e71

Please sign in to comment.