Skip to content

Commit

Permalink
v0.3.3
Browse files Browse the repository at this point in the history
  • Loading branch information
kormide committed Nov 2, 2018
1 parent 090a1d9 commit 83814ea
Show file tree
Hide file tree
Showing 10 changed files with 31 additions and 22 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.3.2"></a>
## 0.3.3 (2018-11-01)


### Security Updates

* update jackson dependency to 2.9.7 due to exploits (https://nvd.nist.gov/vuln/detail/CVE-2017-15095)


<a name="0.3.2"></a>
## 0.3.2 (2018-05-28)

Expand Down
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -775,7 +775,7 @@ The recipe generator is an executable jar that generates ingredients and hooks i
<plugin>
<groupId>ca.derekcormier.recipe</groupId>
<artifactId>recipe-generator-maven-plugin</artifactId>
<version>0.3.2</version>
<version>0.3.3</version>
<executions>
<execution>
<id>generate-ingredients</id>
Expand All @@ -801,7 +801,7 @@ The recipe generator is an executable jar that generates ingredients and hooks i
<plugin>
<groupId>ca.derekcormier.recipe</groupId>
<artifactId>recipe-generator-maven-plugin</artifactId>
<version>0.3.2</version>
<version>0.3.3</version>
<executions>
<execution>
<id>generate-hooks</id>
Expand Down Expand Up @@ -843,13 +843,13 @@ The run-time libraries contain the core classes required by Recipe.
<dependency>
<groupId>ca.derekcormier.recipe</groupId>
<artifactId>recipe-java-runtime</artifactId>
<version>0.3.2</version>
<version>0.3.3</version>
</dependency>
```
#### TypeScript
```json
dependencies: {
"recipe-ts-runtime": "0.3.2",
"recipe-ts-runtime": "0.3.3",
}
```

Expand Down
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.2</version>
<version>0.3.3</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.2</version>
<version>0.3.3</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.2</version>
<version>0.3.3</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.2</version>
<version>0.3.3</version>
<executions>
<execution>
<id>generate-ingredients</id>
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.2</version>
<version>0.3.3</version>
</parent>

<artifactId>recipe-generator-maven-plugin</artifactId>
<version>0.3.2</version>
<version>0.3.3</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.2</version>
<version>0.3.3</version>
</dependency>
</dependencies>

Expand Down
8 changes: 4 additions & 4 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.2</version>
<version>0.3.3</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.2</version>
<version>0.3.3</version>
</dependency>
<dependency>
<groupId>ca.derekcormier.recipe</groupId>
<artifactId>recipe-ts-runtime</artifactId>
<version>0.3.2</version>
<version>0.3.3</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.2</version>
<version>0.3.3</version>
<executions>
<execution>
<id>generate-ingredients</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.2</version>
<version>0.3.3</version>
</parent>

<artifactId>recipe-generator</artifactId>
<version>0.3.2</version>
<version>0.3.3</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.2</version>
<version>0.3.3</version>
</parent>

<artifactId>recipe-java-runtime</artifactId>
<version>0.3.2</version>
<version>0.3.3</version>
<packaging>jar</packaging>

<name>Recipe Java Runtime</name>
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.2",
"version": "0.3.3",
"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.2</version>
<version>0.3.3</version>
</parent>

<artifactId>recipe-ts-runtime</artifactId>
<version>0.3.2</version>
<version>0.3.3</version>
<packaging>jar</packaging>

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

0 comments on commit 83814ea

Please sign in to comment.