From 4535b916d9ec9f4c3fcd9774567a60934731d6b9 Mon Sep 17 00:00:00 2001 From: Volodymyr Pihol Date: Fri, 24 Oct 2025 15:01:07 +0300 Subject: [PATCH 1/6] Bump version to 1.1.0 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index b280de5..7a6afcf 100644 --- a/pom.xml +++ b/pom.xml @@ -6,7 +6,7 @@ io.mailtrap mailtrap-java - 1.0.0 + 1.1.0 Mailtrap Java SDK The official Mailtrap SDK for Java provides Java APIs From 066f46d1a09d195903cfa476741aee13878d317e Mon Sep 17 00:00:00 2001 From: Volodymyr Pihol Date: Fri, 24 Oct 2025 15:01:31 +0300 Subject: [PATCH 2/6] Add ".envrc" to populate needed env files --- .envrc | 2 ++ 1 file changed, 2 insertions(+) create mode 100644 .envrc diff --git a/.envrc b/.envrc new file mode 100644 index 0000000..cec26e1 --- /dev/null +++ b/.envrc @@ -0,0 +1,2 @@ +export GPG_TTY=$(tty) +export JAVA_TOOL_OPTIONS='-Duser.language=us -Duser.country=US' From b039d6de43be4dfec2b78939e410f50760abf85c Mon Sep 17 00:00:00 2001 From: Volodymyr Pihol Date: Fri, 24 Oct 2025 15:02:04 +0300 Subject: [PATCH 3/6] Specify versions for java and maven for "asdf" --- .tool-versions | 2 ++ 1 file changed, 2 insertions(+) create mode 100644 .tool-versions diff --git a/.tool-versions b/.tool-versions new file mode 100644 index 0000000..edef938 --- /dev/null +++ b/.tool-versions @@ -0,0 +1,2 @@ +java temurin-17.0.17+10 +maven 3.9.11 From f8e149237e0ebc4dadac5eba6f9830e48fd045b5 Mon Sep 17 00:00:00 2001 From: Volodymyr Pihol Date: Fri, 24 Oct 2025 15:03:15 +0300 Subject: [PATCH 4/6] Update readme --- README.md | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index f4ba4bf..57b5f7d 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -![Java](https://badgen.net/badge/icon/Java?icon=java&label=) +![Java](https://badgen.net/badge/icon/Java?icon=java&label=) # Official Mailtrap Java client @@ -146,6 +146,12 @@ You can find the API reference [here](https://mailtrap.github.io/mailtrap-java/i Bug reports and pull requests are welcome on [GitHub](https://github.com/mailtrap/mailtrap-java). This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [code of conduct](CODE_OF_CONDUCT.md). +### Build +- Istall [direnv](https://direnv.net/) +- Install [asdf](https://asdf-vm.com/) +- Install Java plugin https://github.com/halcyon/asdf-java +- Install Maven plugin https://github.com/halcyon/asdf-maven + ## License The package is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT). From 56cfc5d46c6c521ec9d8a07705c5bad965337833 Mon Sep 17 00:00:00 2001 From: Volodymyr Pihol Date: Fri, 24 Oct 2025 15:37:24 +0300 Subject: [PATCH 5/6] Fix locale naming --- .envrc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.envrc b/.envrc index cec26e1..d217aee 100644 --- a/.envrc +++ b/.envrc @@ -1,2 +1,2 @@ export GPG_TTY=$(tty) -export JAVA_TOOL_OPTIONS='-Duser.language=us -Duser.country=US' +export JAVA_TOOL_OPTIONS='-Duser.language=en -Duser.country=US' From 93770ff6e96982416c359716edc3a65524df0d0d Mon Sep 17 00:00:00 2001 From: Volodymyr Pihol Date: Fri, 24 Oct 2025 15:38:31 +0300 Subject: [PATCH 6/6] Update Readme with new version and fix typos --- README.md | 12 ++++++------ docs/getting-started.md | 6 +++--- 2 files changed, 9 insertions(+), 9 deletions(-) diff --git a/README.md b/README.md index 57b5f7d..face83e 100644 --- a/README.md +++ b/README.md @@ -19,20 +19,20 @@ As Maven dependency: io.mailtrap mailtrap-java - 1.0.0 + 1.1.0 ``` As Gradle Groovy dependency: ```groovy -implementation 'io.mailtrap:mailtrap-java:1.0.0' +implementation 'io.mailtrap:mailtrap-java:1.1.0' ``` As Gradle Kotlin DSL dependency: ```kotlin -implementation("io.mailtrap:mailtrap-java:1.0.0") +implementation("io.mailtrap:mailtrap-java:1.1.0") ``` ## Usage @@ -147,10 +147,10 @@ You can find the API reference [here](https://mailtrap.github.io/mailtrap-java/i Bug reports and pull requests are welcome on [GitHub](https://github.com/mailtrap/mailtrap-java). This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [code of conduct](CODE_OF_CONDUCT.md). ### Build -- Istall [direnv](https://direnv.net/) +- Install [direnv](https://direnv.net/) - Install [asdf](https://asdf-vm.com/) -- Install Java plugin https://github.com/halcyon/asdf-java -- Install Maven plugin https://github.com/halcyon/asdf-maven +- Install [asdf-java](https://github.com/halcyon/asdf-java) plugin +- Install [asdf-maven](https://github.com/halcyon/asdf-maven) plugin ## License diff --git a/docs/getting-started.md b/docs/getting-started.md index 80d58ee..7272f58 100644 --- a/docs/getting-started.md +++ b/docs/getting-started.md @@ -17,20 +17,20 @@ Maven dependency: io.mailtrap mailtrap-java - 1.0.0 + 1.1.0 ``` Gradle Groovy dependency: ```groovy -implementation 'io.mailtrap:mailtrap-java:1.0.0' +implementation 'io.mailtrap:mailtrap-java:1.1.0' ``` Gradle Kotlin DSL dependency: ```kotlin -implementation("io.mailtrap:mailtrap-java:1.0.0") +implementation("io.mailtrap:mailtrap-java:1.1.0") ``` ### 2. Authentication