Skip to content

Commit

Permalink
1.4.0 - 24 January 2023
Browse files Browse the repository at this point in the history
- Added support for GraalVM Native Image (#51)
- Update dependencies
  • Loading branch information
paulrutter committed Jan 24, 2023
1 parent 62e7492 commit bd0990e
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions CHANGELOG.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
1.3.15 - TBD
1.4.0 - 24 January 2023
- Added support for GraalVM Native Image (https://github.com/blueconic/browscap-java/pull/51)

1.3.14 - 20 January 2022
1.3.14 - 20 January 2023
- Updated chrome versions
- Updated Apple platform versions
- Updated Android platform version
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ In short, this is how our algorithm works:
* The fields _are_ configurable by specifying a list of BrowsCapFields in the constructor of the UserAgentParser.
* 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.
* 1000+ user agents are tested in the unit tests.
* GraalVM Native Image is supported since 1.3.15.
* GraalVM Native Image is supported since 1.4.0

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

Expand Down
6 changes: 3 additions & 3 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<groupId>com.blueconic</groupId>
<artifactId>browscap-java</artifactId>
<packaging>jar</packaging>
<version>1.3.14</version>
<version>1.4.0</version>
<name>browscap-java</name>
<description>A blazingly fast and memory efficient Java client on top of the BrowsCap CSV source files.</description>

Expand Down Expand Up @@ -40,12 +40,12 @@
<dependency>
<groupId>com.univocity</groupId>
<artifactId>univocity-parsers</artifactId>
<version>2.8.4</version>
<version>2.9.1</version>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.13.1</version>
<version>4.13.2</version>
<scope>test</scope>
</dependency>
</dependencies>
Expand Down

0 comments on commit bd0990e

Please sign in to comment.