Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit253be98

Browse files
committed
Merge branch 'release/0.6.1'
2 parentsc1f3748 +f6c99c9 commit253be98

File tree

15 files changed

+232
-102
lines changed

15 files changed

+232
-102
lines changed
Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
name:main-openjdk_current-linux
2+
3+
on:
4+
push:
5+
branches:[ develop, feature/*, release/* ]
6+
pull_request:
7+
branches:[ develop ]
8+
9+
jobs:
10+
build:
11+
runs-on:ubuntu-latest
12+
steps:
13+
-uses:actions/checkout@v2
14+
-name:JDK
15+
uses:actions/setup-java@v1
16+
with:
17+
java-version:15
18+
-name:Build
19+
run:mvn --errors clean verify
Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
name:main-openjdk_current-windows
2+
3+
on:
4+
push:
5+
branches:[ develop, feature/*, release/* ]
6+
pull_request:
7+
branches:[ develop ]
8+
9+
jobs:
10+
build:
11+
runs-on:windows-latest
12+
steps:
13+
-uses:actions/checkout@v2
14+
-name:JDK
15+
uses:actions/setup-java@v1
16+
with:
17+
java-version:15
18+
-name:Build
19+
run:mvn --errors clean verify
Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
name:main-openjdk_lts-linux
2+
3+
on:
4+
push:
5+
branches:[ develop, feature/*, release/* ]
6+
pull_request:
7+
branches:[ develop ]
8+
9+
jobs:
10+
build:
11+
runs-on:ubuntu-latest
12+
steps:
13+
-uses:actions/checkout@v2
14+
-name:JDK
15+
uses:actions/setup-java@v1
16+
with:
17+
java-version:11
18+
-name:Build
19+
run:mvn --errors clean verify

‎.jenkins_pipeline‎

Lines changed: 41 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
#!groovy
2+
3+
pipeline {
4+
5+
agent none
6+
7+
stages {
8+
stage('BuildAndTest') {
9+
parallel {
10+
stage('linux:openjdk-9-hotspot') {
11+
agent { label'linux' }
12+
tools {
13+
jdk'openjdk-9-hotspot'
14+
maven'maven-3.5.3'
15+
}
16+
steps {
17+
withMaven(
18+
maven:'maven-3.5.3',
19+
mavenLocalRepo:'.repository') {
20+
sh'mvn -C -e -U clean install'
21+
}
22+
}
23+
}
24+
stage('linux:openjdk-10-hotspot') {
25+
agent { label'linux' }
26+
tools {
27+
jdk'openjdk-10-hotspot'
28+
maven'maven-3.5.3'
29+
}
30+
steps {
31+
withMaven(
32+
maven:'maven-3.5.3',
33+
mavenLocalRepo:'.repository') {
34+
sh'mvn -C -e -U clean install'
35+
}
36+
}
37+
}
38+
}
39+
}
40+
}
41+
}

‎.travis.yml‎

Lines changed: 0 additions & 13 deletions
This file was deleted.

‎README-CHANGES.xml‎

Lines changed: 20 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,12 @@
1-
<?xml version="1.0" encoding="UTF-8"?><c:changelogxmlns:c="urn:com.io7m.changelog:4.0"project="immutables-vavr">
1+
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
2+
<c:changelogproject="immutables-vavr"xmlns:c="urn:com.io7m.changelog:4.0">
23
<c:releases>
3-
<c:releasedate="2016-12-08T00:00:00+00:00"ticket-system="com.github.immutables.vavr"version="0.1.0">
4+
<c:releasedate="2016-12-08T00:00:00+00:00"is-open="false"ticket-system="com.github.immutables.vavr"version="0.1.0">
45
<c:changes>
56
<c:changedate="2016-12-08T00:00:00+00:00"summary="Initial release."/>
67
</c:changes>
78
</c:release>
8-
<c:releasedate="2017-01-09T00:00:00+00:00"ticket-system="com.github.immutables.vavr"version="0.2.0">
9+
<c:releasedate="2017-01-09T00:00:00+00:00"is-open="false"ticket-system="com.github.immutables.vavr"version="0.2.0">
910
<c:changes>
1011
<c:changedate="2017-01-09T00:00:00+00:00"summary="Fix a compilation error in generated code by using immutables 2.4.0.">
1112
<c:tickets>
@@ -14,7 +15,7 @@
1415
</c:change>
1516
</c:changes>
1617
</c:release>
17-
<c:releasedate="2017-04-21T00:00:00+00:00"ticket-system="com.github.immutables.vavr"version="0.2.1">
18+
<c:releasedate="2017-04-21T00:00:00+00:00"is-open="false"ticket-system="com.github.immutables.vavr"version="0.2.1">
1819
<c:changes>
1920
<c:changedate="2017-04-21T00:00:00+00:00"summary="Add a missing Multimap encoding.">
2021
<c:tickets>
@@ -23,7 +24,7 @@
2324
</c:change>
2425
</c:changes>
2526
</c:release>
26-
<c:releasedate="2017-04-22T00:00:00+00:00"ticket-system="com.github.immutables.vavr"version="0.3.0">
27+
<c:releasedate="2017-04-22T00:00:00+00:00"is-open="false"ticket-system="com.github.immutables.vavr"version="0.3.0">
2728
<c:changes>
2829
<c:changedate="2017-04-22T00:00:00+00:00"summary="Use StandardNaming.PUT for map types.">
2930
<c:tickets>
@@ -33,7 +34,7 @@
3334
<c:changedate="2017-04-22T00:00:00+00:00"summary="Add test suite for example types."/>
3435
</c:changes>
3536
</c:release>
36-
<c:releasedate="2017-07-02T00:00:00+00:00"ticket-system="com.github.immutables.vavr"version="0.4.0">
37+
<c:releasedate="2017-07-02T00:00:00+00:00"is-open="false"ticket-system="com.github.immutables.vavr"version="0.4.0">
3738
<c:changes>
3839
<c:changecompatible="false"date="2017-06-13T00:00:00+00:00"summary="Rename project to immutables-vavr and target Vavr 0.9.0.">
3940
<c:tickets>
@@ -47,7 +48,7 @@
4748
</c:change>
4849
</c:changes>
4950
</c:release>
50-
<c:releasedate="2017-11-25T00:00:00+00:00"ticket-system="com.github.immutables.vavr"version="0.5.0">
51+
<c:releasedate="2017-11-25T00:00:00+00:00"is-open="false"ticket-system="com.github.immutables.vavr"version="0.5.0">
5152
<c:changes>
5253
<c:changedate="2017-11-25T00:00:00+00:00"summary="Publish a Java 9 module. The project now requires JDK 9 to build, but still only requires JDK 8 to run.">
5354
<c:tickets>
@@ -71,20 +72,30 @@
7172
</c:change>
7273
</c:changes>
7374
</c:release>
74-
<c:releasedate="2018-05-26T15:15:47+00:00"ticket-system="com.github.immutables.vavr"version="0.6.0">
75+
<c:releasedate="2018-05-26T00:00:00+00:00"is-open="false"ticket-system="com.github.immutables.vavr"version="0.6.0">
7576
<c:changes>
7677
<c:changecompatible="false"date="2018-05-26T00:00:00+00:00"summary="Correct exported module name to org.immutables.vavr.encodings">
7778
<c:tickets>
7879
<c:ticketid="20"/>
7980
</c:tickets>
8081
</c:change>
81-
<c:changecompatible="false"date="2018-05-26T15:15:47+00:00"summary="Change Option encoding to produce overloaded methods">
82+
<c:changecompatible="false"date="2018-05-26T00:00:00+00:00"summary="Change Option encoding to produce overloaded methods">
8283
<c:tickets>
8384
<c:ticketid="19"/>
8485
</c:tickets>
8586
</c:change>
8687
</c:changes>
8788
</c:release>
89+
<c:releasedate="2021-01-06T21:49:10+00:00"is-open="true"ticket-system="com.github.immutables.vavr"version="0.6.1">
90+
<c:changes>
91+
<c:changedate="2021-01-06T00:00:00+00:00"summary="Update Option encoding to be stricter about nulls">
92+
<c:tickets>
93+
<c:ticketid="27"/>
94+
</c:tickets>
95+
</c:change>
96+
<c:changedate="2021-01-06T21:49:10+00:00"summary="Start requiring JDK 11 to build the project (the compiled code remains JDK 8 compatible)"/>
97+
</c:changes>
98+
</c:release>
8899
</c:releases>
89100
<c:ticket-systems>
90101
<c:ticket-systemdefault="false"id="com.github.immutables.vavr"url="https://github.com/immutables/immutables-vavr/issues/"/>

‎README.md‎

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,8 @@
11
immutables-vavr
22
===
33

4-
[![Build Status](https://travis-ci.org/immutables/immutables-vavr.svg)](https://travis-ci.org/immutables/immutables-vavr)
54
[![Maven Central](https://img.shields.io/maven-central/v/org.immutables.vavr/vavr.png?style=flat-square)](http://search.maven.org/#search%7Cga%7C1%7Cg%3A%22org.immutables.vavr%22)
6-
[![Maven Central (snapshot)](https://img.shields.io/nexus/s/https/oss.sonatype.org/org.immutables.vavr/vavr.svg?style=flat-square)](https://oss.sonatype.org/content/repositories/snapshots/org/immutables/vavr/)
5+
[![Maven Central (snapshot)](https://img.shields.io/nexus/s/org.immutables.vavr/vavr?server=https%3A%2F%2Foss.sonatype.org%2F&style=flat-square)](https://oss.sonatype.org/content/repositories/snapshots/org/immutables/vavr/)
76
[![Codacy Badge](https://api.codacy.com/project/badge/Grade/98691df562e44db69bcace5ee9913855)](https://www.codacy.com/app/github_79/immutables-vavr?utm_source=github.com&amp;utm_medium=referral&amp;utm_content=immutables/immutables-vavr&amp;utm_campaign=Badge_Grade)
87

98
A set of[Immutables](http://immutables.org) encodings for[Vavr](http://vavr.io).
@@ -12,6 +11,12 @@ Note: Prior to a 1.0.0 release, the encodings are still in the
1211
experimental phase and therefore should not be relied upon to provide
1312
a stable API.
1413

14+
| JVM| Platform| Status|
15+
|-----------------|----------|--------|
16+
| OpenJDK LTS| Linux|[![Build (OpenJDK LTS, Linux)](https://img.shields.io/github/workflow/status/immutables/immutables-vavr/main-openjdk_lts-linux)](https://github.com/immutables/immutables-vavr/actions?query=workflow%3Amain-openjdk_lts-linux)|
17+
| OpenJDK Current | Linux |[![Build (OpenJDK Current, Linux)](https://img.shields.io/github/workflow/status/immutables/immutables-vavr/main-openjdk_current-linux)](https://github.com/immutables/immutables-vavr/actions?query=workflow%3Amain-openjdk_current-linux)
18+
| OpenJDK Current | Windows |[![Build (OpenJDK Current, Windows)](https://img.shields.io/github/workflow/status/immutables/immutables-vavr/main-openjdk_current-windows)](https://github.com/immutables/immutables-vavr/actions?query=workflow%3Amain-openjdk_current-windows)
19+
1520
####Ten Second Tutorial
1621

1722
Include the encodings in your project:

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp