Skip to content

Commit

Permalink
chore(main): release java-function-invoker 1.3.1 (#220)
Browse files Browse the repository at this point in the history
* chore(main): release java-function-invoker 1.3.1

* patch maven-plugin package manifest for release

---------

Co-authored-by: release-please[bot] <55107282+release-please[bot]@users.noreply.github.com>
Co-authored-by: Gareth George <[email protected]>
  • Loading branch information
release-please[bot] and garethgeorge authored Sep 19, 2023
1 parent 6ece560 commit 89b3b92
Show file tree
Hide file tree
Showing 7 changed files with 18 additions and 10 deletions.
2 changes: 1 addition & 1 deletion .github/.release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -1 +1 @@
{"functions-framework-api":"1.1.0","invoker":"1.3.0","function-maven-plugin":"0.11.0"}
{"functions-framework-api":"1.1.0","invoker":"1.3.1","function-maven-plugin":"0.11.0"}
2 changes: 1 addition & 1 deletion function-maven-plugin/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@
<dependency>
<groupId>com.google.cloud.functions.invoker</groupId>
<artifactId>java-function-invoker</artifactId>
<version>1.3.1-SNAPSHOT</version>
<version>1.3.1</version>
</dependency>

<dependency>
Expand Down
8 changes: 8 additions & 0 deletions invoker/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# Changelog

## [1.3.1](https://github.com/GoogleCloudPlatform/functions-framework-java/compare/java-function-invoker-v1.3.0...java-function-invoker-v1.3.1) (2023-09-13)


### Bug Fixes

* **functions:** include Implementation-Version key in invoker package manifest ([#221](https://github.com/GoogleCloudPlatform/functions-framework-java/issues/221)) ([f3fe2ce](https://github.com/GoogleCloudPlatform/functions-framework-java/commit/f3fe2ce46fcb1885137cdf504649612e7c31dc4c))
* typed declaration works correctly with http trigger ([#212](https://github.com/GoogleCloudPlatform/functions-framework-java/issues/212)) ([b3045ad](https://github.com/GoogleCloudPlatform/functions-framework-java/commit/b3045ad380cd23e37f5edec0d758031438bcb568))

## [1.3.0](https://github.com/GoogleCloudPlatform/functions-framework-java/compare/java-function-invoker-v1.2.1...java-function-invoker-v1.3.0) (2023-06-01)


Expand Down
4 changes: 2 additions & 2 deletions invoker/conformance/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,12 @@
<parent>
<artifactId>java-function-invoker-parent</artifactId>
<groupId>com.google.cloud.functions.invoker</groupId>
<version>1.3.1-SNAPSHOT</version>
<version>1.3.1</version>
</parent>

<groupId>com.google.cloud.functions.invoker</groupId>
<artifactId>conformance</artifactId>
<version>1.3.1-SNAPSHOT</version>
<version>1.3.1</version>

<name>GCF Confromance Tests</name>
<description>
Expand Down
6 changes: 3 additions & 3 deletions invoker/core/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,12 @@
<parent>
<groupId>com.google.cloud.functions.invoker</groupId>
<artifactId>java-function-invoker-parent</artifactId>
<version>1.3.1-SNAPSHOT</version>
<version>1.3.1</version>
</parent>

<groupId>com.google.cloud.functions.invoker</groupId>
<artifactId>java-function-invoker</artifactId>
<version>1.3.1-SNAPSHOT</version>
<version>1.3.1</version>
<name>GCF Java Invoker</name>
<description>
Application that invokes a GCF Java function. This application is a
Expand Down Expand Up @@ -115,7 +115,7 @@
<dependency>
<groupId>com.google.cloud.functions.invoker</groupId>
<artifactId>java-function-invoker-testfunction</artifactId>
<version>1.3.1-SNAPSHOT</version>
<version>1.3.1</version>
<type>test-jar</type>
<scope>test</scope>
</dependency>
Expand Down
2 changes: 1 addition & 1 deletion invoker/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

<groupId>com.google.cloud.functions.invoker</groupId>
<artifactId>java-function-invoker-parent</artifactId>
<version>1.3.1-SNAPSHOT</version>
<version>1.3.1</version>
<packaging>pom</packaging>
<name>GCF Java Invoker Parent</name>
<description>
Expand Down
4 changes: 2 additions & 2 deletions invoker/testfunction/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,12 @@
<parent>
<groupId>com.google.cloud.functions.invoker</groupId>
<artifactId>java-function-invoker-parent</artifactId>
<version>1.3.1-SNAPSHOT</version>
<version>1.3.1</version>
</parent>

<groupId>com.google.cloud.functions.invoker</groupId>
<artifactId>java-function-invoker-testfunction</artifactId>
<version>1.3.1-SNAPSHOT</version>
<version>1.3.1</version>
<name>Example GCF Function Jar</name>
<description>
An example of a GCF function packaged into a jar. We use this in tests.
Expand Down

0 comments on commit 89b3b92

Please sign in to comment.