Skip to content

Commit bd0990e

Browse files
committed
1.4.0 - 24 January 2023
- Added support for GraalVM Native Image (#51) - Update dependencies
1 parent 62e7492 commit bd0990e

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

CHANGELOG.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
1.3.15 - TBD
1+
1.4.0 - 24 January 2023
22
- Added support for GraalVM Native Image (https://github.com/blueconic/browscap-java/pull/51)
33

4-
1.3.14 - 20 January 2022
4+
1.3.14 - 20 January 2023
55
- Updated chrome versions
66
- Updated Apple platform versions
77
- Updated Android platform version

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ In short, this is how our algorithm works:
3030
* The fields _are_ configurable by specifying a list of BrowsCapFields in the constructor of the UserAgentParser.
3131
* The CSV file is read in a streaming way, so it's processed line by line. This makes it more memory efficient than loading the whole into memory first.
3232
* 1000+ user agents are tested in the unit tests.
33-
* GraalVM Native Image is supported since 1.3.15.
33+
* GraalVM Native Image is supported since 1.4.0
3434

3535
## Future
3636
Possible new features we're thinking of (and are not yet present):
@@ -43,7 +43,7 @@ Add this to the dependencies in your pom.xml.
4343
<dependency>
4444
<groupId>com.blueconic</groupId>
4545
<artifactId>browscap-java</artifactId>
46-
<version>1.3.14</version>
46+
<version>1.4.0</version>
4747
</dependency>
4848
```
4949

pom.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<groupId>com.blueconic</groupId>
55
<artifactId>browscap-java</artifactId>
66
<packaging>jar</packaging>
7-
<version>1.3.14</version>
7+
<version>1.4.0</version>
88
<name>browscap-java</name>
99
<description>A blazingly fast and memory efficient Java client on top of the BrowsCap CSV source files.</description>
1010

@@ -40,12 +40,12 @@
4040
<dependency>
4141
<groupId>com.univocity</groupId>
4242
<artifactId>univocity-parsers</artifactId>
43-
<version>2.8.4</version>
43+
<version>2.9.1</version>
4444
</dependency>
4545
<dependency>
4646
<groupId>junit</groupId>
4747
<artifactId>junit</artifactId>
48-
<version>4.13.1</version>
48+
<version>4.13.2</version>
4949
<scope>test</scope>
5050
</dependency>
5151
</dependencies>

0 commit comments

Comments
 (0)