Skip to content

Commit

Permalink
v0.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
kormide committed Dec 26, 2019
1 parent 7d205a9 commit 327f4eb
Show file tree
Hide file tree
Showing 15 changed files with 91 additions and 83 deletions.
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,12 @@
<a name="0.4.0"></a>
## 0.4.0 (2019-12-26)

* \[breaking change\] domain is now specified in the cookbook
* added DirectDispatchOven for simpler test setup cases where payloads are dispatched directly to a backend oven without a network hop
* added the ability to set default dispatchers on an oven
* now targeting Java 11
* generated java code now uses 2-space indents

<a name="0.3.7"></a>
## 0.3.7 (2019-02-23)

Expand Down
101 changes: 50 additions & 51 deletions README.md

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<groupId>ca.derekcormier.recipe</groupId>
<artifactId>recipe</artifactId>
<packaging>pom</packaging>
<version>0.3.7</version>
<version>0.4.0</version>
<name>Recipe Framework</name>
<description>Parent project for Recipe framework</description>
<url>https://github.com/kormide/recipe</url>
Expand Down
6 changes: 3 additions & 3 deletions recipe-generator-java-testing/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<artifactId>recipe</artifactId>
<groupId>ca.derekcormier.recipe</groupId>
<version>0.3.7</version>
<version>0.4.0</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand All @@ -21,7 +21,7 @@
<dependency>
<groupId>ca.derekcormier.recipe</groupId>
<artifactId>recipe-java-runtime</artifactId>
<version>0.3.7</version>
<version>0.4.0</version>
<scope>test</scope>
</dependency>
<dependency>
Expand All @@ -43,7 +43,7 @@
<plugin>
<groupId>ca.derekcormier.recipe</groupId>
<artifactId>recipe-generator-maven-plugin</artifactId>
<version>0.3.7</version>
<version>0.4.0</version>
<executions>
<execution>
<id>generate-ingredients</id>
Expand Down
10 changes: 5 additions & 5 deletions recipe-generator-js-testing/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,13 @@
<parent>
<artifactId>recipe</artifactId>
<groupId>ca.derekcormier.recipe</groupId>
<version>0.3.7</version>
<version>0.4.0</version>
</parent>
<modelVersion>4.0.0</modelVersion>

<name>Recipe Generator JavaScript Testing</name>
<artifactId>recipe-generator-js-testing</artifactId>
<version>0.3.7</version>
<version>0.4.0</version>

<properties>
<maven.deploy.skip>true</maven.deploy.skip>
Expand All @@ -21,12 +21,12 @@
<dependency>
<groupId>ca.derekcormier.recipe</groupId>
<artifactId>recipe-generator</artifactId>
<version>0.3.7</version>
<version>0.4.0</version>
</dependency>
<dependency>
<groupId>ca.derekcormier.recipe</groupId>
<artifactId>recipe-js-runtime</artifactId>
<version>0.3.7</version>
<version>0.4.0</version>
</dependency>
</dependencies>

Expand Down Expand Up @@ -59,7 +59,7 @@
<plugin>
<groupId>ca.derekcormier.recipe</groupId>
<artifactId>recipe-generator-maven-plugin</artifactId>
<version>0.3.7</version>
<version>0.4.0</version>
<executions>
<!-- Generate test ingredients -->
<execution>
Expand Down
6 changes: 3 additions & 3 deletions recipe-generator-maven-plugin/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,11 @@
<parent>
<groupId>ca.derekcormier.recipe</groupId>
<artifactId>recipe</artifactId>
<version>0.3.7</version>
<version>0.4.0</version>
</parent>

<artifactId>recipe-generator-maven-plugin</artifactId>
<version>0.3.7</version>
<version>0.4.0</version>
<packaging>maven-plugin</packaging>

<name>Recipe Generator Maven Plugin</name>
Expand Down Expand Up @@ -60,7 +60,7 @@
<dependency>
<groupId>ca.derekcormier.recipe</groupId>
<artifactId>recipe-generator</artifactId>
<version>0.3.7</version>
<version>0.4.0</version>
</dependency>
</dependencies>

Expand Down
2 changes: 1 addition & 1 deletion recipe-generator-node/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "recipe-generator-node",
"version": "0.3.7",
"version": "0.4.0",
"description": "Node wrapper to run generation for the Recipe Framework",
"author": "Derek Cormier",
"homepage": "https://github.com/kormide/recipe",
Expand Down
6 changes: 3 additions & 3 deletions recipe-generator-node/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,13 @@
<parent>
<artifactId>recipe</artifactId>
<groupId>ca.derekcormier.recipe</groupId>
<version>0.3.7</version>
<version>0.4.0</version>
</parent>
<modelVersion>4.0.0</modelVersion>

<name>Recipe Generator Node Module</name>
<artifactId>recipe-generator-node</artifactId>
<version>0.3.7</version>
<version>0.4.0</version>

<properties>
<maven.deploy.skip>true</maven.deploy.skip>
Expand All @@ -21,7 +21,7 @@
<dependency>
<groupId>ca.derekcormier.recipe</groupId>
<artifactId>recipe-generator</artifactId>
<version>0.3.7</version>
<version>0.4.0</version>
</dependency>
</dependencies>

Expand Down
10 changes: 5 additions & 5 deletions recipe-generator-ts-testing/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<artifactId>recipe</artifactId>
<groupId>ca.derekcormier.recipe</groupId>
<version>0.3.7</version>
<version>0.4.0</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand All @@ -20,12 +20,12 @@
<dependency>
<groupId>ca.derekcormier.recipe</groupId>
<artifactId>recipe-generator</artifactId>
<version>0.3.7</version>
<version>0.4.0</version>
</dependency>
<dependency>
<groupId>ca.derekcormier.recipe</groupId>
<artifactId>recipe-ts-runtime</artifactId>
<version>0.3.7</version>
<version>0.4.0</version>
</dependency>
</dependencies>

Expand Down Expand Up @@ -60,7 +60,7 @@
<plugin>
<groupId>ca.derekcormier.recipe</groupId>
<artifactId>recipe-generator-maven-plugin</artifactId>
<version>0.3.7</version>
<version>0.4.0</version>
<executions>
<execution>
<id>generate-ingredients</id>
Expand Down Expand Up @@ -94,7 +94,7 @@
<plugin>
<groupId>ca.derekcormier.recipe</groupId>
<artifactId>recipe-generator-maven-plugin</artifactId>
<version>0.3.7</version>
<version>0.4.0</version>
<executions>
<execution>
<id>generate-hooks</id>
Expand Down
4 changes: 2 additions & 2 deletions recipe-generator/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,11 @@
<parent>
<groupId>ca.derekcormier.recipe</groupId>
<artifactId>recipe</artifactId>
<version>0.3.7</version>
<version>0.4.0</version>
</parent>

<artifactId>recipe-generator</artifactId>
<version>0.3.7</version>
<version>0.4.0</version>
<packaging>jar</packaging>

<name>Recipe Generator</name>
Expand Down
4 changes: 2 additions & 2 deletions recipe-java-runtime/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,11 @@
<parent>
<groupId>ca.derekcormier.recipe</groupId>
<artifactId>recipe</artifactId>
<version>0.3.7</version>
<version>0.4.0</version>
</parent>

<artifactId>recipe-java-runtime</artifactId>
<version>0.3.7</version>
<version>0.4.0</version>
<packaging>jar</packaging>

<name>Recipe Java Runtime</name>
Expand Down
2 changes: 1 addition & 1 deletion recipe-js-runtime/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "recipe-js-runtime",
"version": "0.3.7",
"version": "0.4.0",
"description": "JavaScript run-time library for the Recipe framework",
"author": "Derek Cormier",
"homepage": "https://github.com/kormide/recipe",
Expand Down
6 changes: 3 additions & 3 deletions recipe-js-runtime/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,12 @@
<parent>
<artifactId>recipe</artifactId>
<groupId>ca.derekcormier.recipe</groupId>
<version>0.3.7</version>
<version>0.4.0</version>
</parent>
<modelVersion>4.0.0</modelVersion>

<artifactId>recipe-js-runtime</artifactId>
<version>0.3.7</version>
<version>0.4.0</version>

<name>Recipe JavaScript Runtime</name>

Expand All @@ -22,7 +22,7 @@
<dependency>
<groupId>ca.derekcormier.recipe</groupId>
<artifactId>recipe-ts-runtime</artifactId>
<version>0.3.7</version>
<version>0.4.0</version>
</dependency>
</dependencies>

Expand Down
2 changes: 1 addition & 1 deletion recipe-ts-runtime/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "recipe-ts-runtime",
"version": "0.3.7",
"version": "0.4.0",
"description": "TypeScript run-time library for the Recipe framework",
"author": "Derek Cormier",
"homepage": "https://github.com/kormide/recipe",
Expand Down
4 changes: 2 additions & 2 deletions recipe-ts-runtime/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,11 @@
<parent>
<groupId>ca.derekcormier.recipe</groupId>
<artifactId>recipe</artifactId>
<version>0.3.7</version>
<version>0.4.0</version>
</parent>

<artifactId>recipe-ts-runtime</artifactId>
<version>0.3.7</version>
<version>0.4.0</version>
<packaging>jar</packaging>

<name>Recipe TypeScript Runtime</name>
Expand Down

0 comments on commit 327f4eb

Please sign in to comment.