Skip to content

Commit 364bb0c

Browse files
committed
Merge branch 'hotfix/0.13.2'
2 parents 10727e1 + 2005c2e commit 364bb0c

File tree

85 files changed

+335
-379
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

85 files changed

+335
-379
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,11 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
66
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
77

8+
## [0.13.2] - 2020-09-22
9+
- Fix detecting GraalVM version on GraalVM JDK8
10+
- Lax the requirement of running `es4x install`,
11+
if missing will be called before run
12+
813
## [0.13.1] - 2020-09-22
914
- Upgraded vert.x to 3.9.3
1015
- PM will warn about misalign Graal version

README.md

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -14,19 +14,14 @@ JavaScript is fast, and this is the way to make it even faster 🚀🚀🚀
1414

1515
## Usage
1616

17-
```bash
18-
# add es4x-pm globally
19-
npm install -g es4x-pm
20-
```
21-
2217
Create a project:
2318

2419
```
2520
# create a generic project
2621
mkdir my-app
2722
cd my-app
2823
# init the project
29-
es4x init
24+
npm init @es4x project
3025
# add other dependencies...
3126
npm install @vertx/unit --save-dev
3227
npm install @vertx/core --save-prod

codegen/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,14 +6,14 @@
66
<parent>
77
<groupId>io.reactiverse</groupId>
88
<artifactId>es4x-parent</artifactId>
9-
<version>0.13.1</version>
9+
<version>0.13.2</version>
1010
<relativePath>..</relativePath>
1111
</parent>
1212

1313
<modelVersion>4.0.0</modelVersion>
1414

1515
<artifactId>es4x-codegen</artifactId>
16-
<version>0.13.1</version>
16+
<version>0.13.2</version>
1717

1818
<properties>
1919
<tools.jar>${java.home}/../lib/tools.jar</tools.jar>

es4x/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,14 +6,14 @@
66
<parent>
77
<groupId>io.reactiverse</groupId>
88
<artifactId>es4x-parent</artifactId>
9-
<version>0.13.1</version>
9+
<version>0.13.2</version>
1010
<relativePath>..</relativePath>
1111
</parent>
1212

1313
<modelVersion>4.0.0</modelVersion>
1414

1515
<artifactId>es4x</artifactId>
16-
<version>0.13.1</version>
16+
<version>0.13.2</version>
1717

1818
<properties>
1919
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>

generator/io.reactiverse/elasticsearch-client/pom.xml

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,12 +8,12 @@
88
<parent>
99
<groupId>io.reactiverse.es4x</groupId>
1010
<artifactId>es4x-generator</artifactId>
11-
<version>0.13.1</version>
11+
<version>0.13.2</version>
1212
<relativePath>../..</relativePath>
1313
</parent>
1414

1515
<artifactId>elasticsearch-client</artifactId>
16-
<version>0.13.1</version>
16+
<version>0.13.2</version>
1717

1818
<packaging>jar</packaging>
1919

@@ -22,6 +22,12 @@
2222
<npm-name>@reactiverse/elasticsearch-client</npm-name>
2323
<npm-version>0.8.1ec7.5.1</npm-version>
2424
<npm-skip>false</npm-skip>
25+
<!-- language=json -->
26+
<npm-dependencies>
27+
{
28+
"@vertx/core": "${stack.version}"
29+
}
30+
</npm-dependencies>
2531
</properties>
2632

2733
<dependencies>

generator/io.vertx/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,12 +8,12 @@
88
<parent>
99
<groupId>io.reactiverse</groupId>
1010
<artifactId>es4x-parent</artifactId>
11-
<version>0.13.1</version>
11+
<version>0.13.2</version>
1212
<relativePath>../..</relativePath>
1313
</parent>
1414

1515
<artifactId>es4x-vertx-stack</artifactId>
16-
<version>0.13.1</version>
16+
<version>0.13.2</version>
1717

1818
<dependencies>
1919
<dependency>

generator/io.vertx/vertx-amqp-bridge/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,14 +6,14 @@
66
<parent>
77
<groupId>io.reactiverse.es4x</groupId>
88
<artifactId>es4x-generator</artifactId>
9-
<version>0.13.1</version>
9+
<version>0.13.2</version>
1010
<relativePath>../..</relativePath>
1111
</parent>
1212

1313
<modelVersion>4.0.0</modelVersion>
1414

1515
<artifactId>vertx-amqp-bridge</artifactId>
16-
<version>0.13.1</version>
16+
<version>0.13.2</version>
1717

1818
<properties>
1919
<maven.groupId>io.vertx</maven.groupId>

generator/io.vertx/vertx-auth-common/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,14 +6,14 @@
66
<parent>
77
<groupId>io.reactiverse.es4x</groupId>
88
<artifactId>es4x-generator</artifactId>
9-
<version>0.13.1</version>
9+
<version>0.13.2</version>
1010
<relativePath>../..</relativePath>
1111
</parent>
1212

1313
<modelVersion>4.0.0</modelVersion>
1414

1515
<artifactId>vertx-auth-common</artifactId>
16-
<version>0.13.1</version>
16+
<version>0.13.2</version>
1717

1818
<properties>
1919
<maven.groupId>io.vertx</maven.groupId>

generator/io.vertx/vertx-auth-htdigest/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,14 +6,14 @@
66
<parent>
77
<groupId>io.reactiverse.es4x</groupId>
88
<artifactId>es4x-generator</artifactId>
9-
<version>0.13.1</version>
9+
<version>0.13.2</version>
1010
<relativePath>../..</relativePath>
1111
</parent>
1212

1313
<modelVersion>4.0.0</modelVersion>
1414

1515
<artifactId>vertx-auth-htdigest</artifactId>
16-
<version>0.13.1</version>
16+
<version>0.13.2</version>
1717

1818
<properties>
1919
<maven.groupId>io.vertx</maven.groupId>

generator/io.vertx/vertx-auth-htpasswd/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,14 +6,14 @@
66
<parent>
77
<groupId>io.reactiverse.es4x</groupId>
88
<artifactId>es4x-generator</artifactId>
9-
<version>0.13.1</version>
9+
<version>0.13.2</version>
1010
<relativePath>../..</relativePath>
1111
</parent>
1212

1313
<modelVersion>4.0.0</modelVersion>
1414

1515
<artifactId>vertx-auth-htpasswd</artifactId>
16-
<version>0.13.1</version>
16+
<version>0.13.2</version>
1717

1818
<properties>
1919
<maven.groupId>io.vertx</maven.groupId>

0 commit comments

Comments
 (0)