Skip to content

Commit

Permalink
Update NOTICE and README (#19)
Browse files Browse the repository at this point in the history
* Java 11 -> Java 21
* Fix NOTICE
  • Loading branch information
siladu authored Jan 24, 2025
1 parent 5383996 commit 145de4a
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 4 deletions.
4 changes: 4 additions & 0 deletions NOTICE
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
Copyright 2024-2025 Consensys Software Inc

This product includes code developed at The Machine Consultancy LLC.

Copyright 2023-2024 The Machine Consultancy LLC

This product includes code developed under the Apache Tuweni incubation project.
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ Tuweni is a set of libraries and other tools to aid development of blockchain an

It includes a low-level bytes library, serialization and deserialization codecs (e.g. [RLP](https://github.com/ethereum/wiki/wiki/RLP)), various cryptography functions and primatives, and lots of other helpful utilities.

Tuweni is developed for JDK 11 or higher.
Tuweni is developed for JDK 21 or higher.

## Clone along with submodules ##
git clone https://github.com/tmio/tuweni.git tuweni
Expand All @@ -21,7 +21,7 @@ Tuweni is developed for JDK 11 or higher.

### Build the project ###
#### With Gradle and Java ####
Install JDK 11.
Install JDK 21.

Run:

Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -543,7 +543,7 @@ dokkaHtml.configure {

tasks.register('checkNotice') {
def lines = file("NOTICE").readLines()
def expected = "Copyright 2023-${LocalDate.now().getYear()} The Machine Consultancy LLC"
def expected = "Copyright 2024-${LocalDate.now().getYear()} Consensys Software Inc"
for (line in lines) {
if (expected == line) {
return
Expand Down
2 changes: 1 addition & 1 deletion examples/jsonrpc/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ This example showcases how to use the proxy with a public service.

## Requirements

This example requires Docker, Docker Compose 1.25, Java 11 and Gradle > 6.
This example requires Docker, Docker Compose 1.25, Java 21 and Gradle > 6.

## Steps

Expand Down

0 comments on commit 145de4a

Please sign in to comment.