Skip to content

Commit 267bfb6

Browse files
committed
Bump version to 0.1.0
1 parent 93d9c3b commit 267bfb6

File tree

4 files changed

+24
-3
lines changed

4 files changed

+24
-3
lines changed

CHANGELOG.md

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
# Changelog
2+
All notable changes to this project will be documented in this file.
3+
4+
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
5+
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
6+
7+
## 0.1.0 - 2020-12-07
8+
### Added
9+
- First release to the Maven Central Repository.

NOTICE.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Copyright 2020 the RegExp authors.
1+
Copyright 2020 the RegExp4J authors.
22

33
This software is licensed under the Apache License, Versions 2.0.
44

README.md

+13-1
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,21 @@
11
# RegExp4J
2-
2+
[![Apache 2.0 License](https://img.shields.io/:license-Apache%202.0-blue.svg)](https://www.apache.org/licenses/LICENSE-2.0)
3+
[![Maven Central](https://img.shields.io/maven-central/v/org.leadpony.regexp4j/regexp4j.svg?label=Maven%20Central)](https://search.maven.org/search?q=g:%22org.leadpony.regexp4j%22%20AND%20a:%22regexp4j%22)
4+
[![Javadocs](https://www.javadoc.io/badge/org.leadpony.regexp4j/regexp4j.svg?color=green)](https://www.javadoc.io/doc/org.leadpony.regexp4j/regexp4j)
35
[![Build Status](https://travis-ci.org/leadpony/regexp4j.svg?branch=main)](https://travis-ci.org/leadpony/regexp4j)
46

57
ECMAScript compatible RegExp library for Java
68

9+
## Using as a Maven dependency
10+
11+
```xml
12+
<dependency>
13+
<groupId>org.leadpony.regexp4j</groupId>
14+
<artifactId>regexp4j</artifactId>
15+
<version>0.1.0</version>
16+
</dependency>
17+
```
18+
719
## Limitations
820

921
* Matching is performed by code point, not by code unit as in ECMAScript. For example, metacharacter `.` may match a character in supplementary planes encoded as a surrogate pair.

pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88
<groupId>org.leadpony.regexp4j</groupId>
99
<artifactId>regexp4j</artifactId>
10-
<version>0.1.0-SNAPSHOT</version>
10+
<version>0.1.0</version>
1111
<packaging>jar</packaging>
1212

1313
<name>RegExp4J</name>

0 commit comments

Comments
 (0)