Skip to content

Commit

Permalink
Merge branch 'release/0.13.1'
Browse files Browse the repository at this point in the history
  • Loading branch information
pmlopes committed Sep 21, 2020
2 parents 9368daf + 1f08621 commit 10727e1
Show file tree
Hide file tree
Showing 474 changed files with 4,795 additions and 51,627 deletions.
30 changes: 0 additions & 30 deletions .github/workflows/main.yml

This file was deleted.

12 changes: 6 additions & 6 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,24 +38,24 @@ matrix:
install: . ./install-jdk.sh --url "https://api.adoptopenjdk.net/v3/binary/latest/14/ga/linux/x64/jdk/hotspot/normal/adoptopenjdk"
# GraalVM
- env:
- JDK='GraalVM 20.1.0 (8)'
- JDK='GraalVM 20.2.0 (8)'
- SKIP_JACOCO='true'
os: linux
dist: xenial
install: . ./install-jdk.sh --url "https://github.com/graalvm/graalvm-ce-builds/releases/download/vm-20.1.0/graalvm-ce-java8-linux-amd64-20.1.0.tar.gz"
install: . ./install-jdk.sh --url "https://github.com/graalvm/graalvm-ce-builds/releases/download/vm-20.2.0/graalvm-ce-java8-linux-amd64-20.2.0.tar.gz"
- env:
- JDK='GraalVM 20.1.0 (11)'
- JDK='GraalVM 20.2.0 (11)'
- SKIP_JACOCO='true'
os: linux
dist: xenial
install: . ./install-jdk.sh --url "https://github.com/graalvm/graalvm-ce-builds/releases/download/vm-20.1.0/graalvm-ce-java11-linux-amd64-20.1.0.tar.gz"
install: . ./install-jdk.sh --url "https://github.com/graalvm/graalvm-ce-builds/releases/download/vm-20.2.0/graalvm-ce-java11-linux-amd64-20.2.0.tar.gz"
- env:
- JDK='GraalVM 20.1.0 (11)'
- JDK='GraalVM 20.2.0 (11)'
- SKIP_JACOCO='true'
os: linux
dist: xenial
arch: arm64
install: . ./install-jdk.sh --url "https://github.com/graalvm/graalvm-ce-builds/releases/download/vm-20.1.0/graalvm-ce-java11-linux-aarch64-20.1.0.tar.gz"
install: . ./install-jdk.sh --url "https://github.com/graalvm/graalvm-ce-builds/releases/download/vm-20.2.0/graalvm-ce-java11-linux-aarch64-20.2.0.tar.gz"
# OpenJ9
- env:
- JDK='OpenJ9 11'
Expand Down
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).

## [0.13.1] - 2020-09-22
- Upgraded vert.x to 3.9.3
- PM will warn about misalign Graal version
- New docs explaining the details of ES4X
- `es4x-pm` npm renamed to `@vertx/create`

## [0.13.0] - 2020-07-27
- Upgraded vert.x to 3.9.2
- shutdown hook can be async now
Expand Down
2 changes: 1 addition & 1 deletion CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ environment:
If you have `GraalVM` and `Maven` installed you might skip the installation of `Node.js`
and `NPM` although the `node` binary included with `GraalVM` is known to have some
performance issues with some of `npm` packages such as `TypeScript Compiler`.

### Modules

This projects is composed of several main modules/components:
Expand Down
4 changes: 3 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,9 @@

This is the EcmaScript (5.1+) language support for [Eclipse Vert.x](http://vertx.io)

[![Build Status](https://travis-ci.com/reactiverse/es4x.svg?branch=develop)](https://travis-ci.com/reactiverse/es4x) [![Join the chat at https://gitter.im/es4x/Lobby](https://badges.gitter.im/es4x/Lobby.svg)](https://gitter.im/es4x/Lobby?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)
[![Build Status](https://travis-ci.com/reactiverse/es4x.svg?branch=develop)](https://travis-ci.com/reactiverse/es4x)
[![Join the chat at https://gitter.im/es4x/Lobby](https://badges.gitter.im/es4x/Lobby.svg)](https://gitter.im/es4x/Lobby?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)
[![Security Status](https://snyk-widget.herokuapp.com/badge/mvn/io.reactiverse/es4x/badge.svg)](https://snyk.io/vuln/maven:io.reactiverse:es4x?utm_medium=referral&utm_source=badge&utm_campaign=snyk-widget)

## Why?

Expand Down
14 changes: 2 additions & 12 deletions codegen/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,14 +6,14 @@
<parent>
<groupId>io.reactiverse</groupId>
<artifactId>es4x-parent</artifactId>
<version>0.13.0</version>
<version>0.13.1</version>
<relativePath>..</relativePath>
</parent>

<modelVersion>4.0.0</modelVersion>

<artifactId>es4x-codegen</artifactId>
<version>0.13.0</version>
<version>0.13.1</version>

<properties>
<tools.jar>${java.home}/../lib/tools.jar</tools.jar>
Expand Down Expand Up @@ -51,16 +51,6 @@
<artifactId>vertx-codegen</artifactId>
<version>${stack.version}</version>
</dependency>
<dependency>
<groupId>io.vertx</groupId>
<artifactId>vertx-docgen</artifactId>
<version>0.9.3</version>
</dependency>
<dependency>
<groupId>io.vertx</groupId>
<artifactId>vertx-codetrans</artifactId>
<version>${stack.version}</version>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,7 @@ public String render(Model model, int index, int size, Map<String, Object> sessi

writer.printf("![npm (scoped)](https://img.shields.io/npm/v/%s.svg)\n", getNPMScope(model.getModule()));
writer.printf("![npm](https://img.shields.io/npm/l/%s.svg)\n", getNPMScope(model.getModule()));
writer.printf("![Security Status](https://snyk-widget.herokuapp.com/badge/npm/%s.svg)\n", getNPMScope(model.getModule()));
writer.print("\n");
writer.print("Generated JavaScript bindings for Eclipse Vert.x.\n");
writer.print("\n");
Expand Down

This file was deleted.

This file was deleted.

Loading

0 comments on commit 10727e1

Please sign in to comment.