Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased]
## [1.0.0] - 2026-04-21

### Added

Expand Down Expand Up @@ -57,6 +57,6 @@ Initial release.
- Bearer token auth, Gson-based JSON serialization
- Structured exceptions: `LettrException`, `LettrApiException`, `LettrValidationException`

[Unreleased]: https://github.com/lettr/lettr-java/compare/v0.2.0...HEAD
[1.0.0]: https://github.com/lettr/lettr-java/compare/v0.2.0...v1.0.0
[0.2.0]: https://github.com/lettr/lettr-java/compare/v0.1.0...v0.2.0
[0.1.0]: https://github.com/lettr/lettr-java/releases/tag/v0.1.0
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ The official Java SDK for the [Lettr](https://lettr.com) Email API. Send transac
### Gradle

```groovy
implementation 'com.lettr:lettr-java:0.3.0'
implementation 'com.lettr:lettr-java:1.0.0'
```

### Maven
Expand All @@ -16,7 +16,7 @@ implementation 'com.lettr:lettr-java:0.3.0'
<dependency>
<groupId>com.lettr</groupId>
<artifactId>lettr-java</artifactId>
<version>0.3.0</version>
<version>1.0.0</version>
</dependency>
```

Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
GROUP=com.lettr
VERSION=0.3.0
VERSION=1.0.0
POM_ARTIFACT_ID=lettr-java
POM_NAME=Lettr Java SDK
POM_DESCRIPTION=Java SDK for the Lettr Email API
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/com/lettr/core/net/HttpClient.java
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
public class HttpClient {

private static final String BASE_URL = "https://app.lettr.com/api";
private static final String USER_AGENT = "lettr-java/0.3.0";
private static final String USER_AGENT = "lettr-java/1.0.0";
private static final Duration DEFAULT_TIMEOUT = Duration.ofSeconds(30);

private final String apiKey;
Expand Down
Loading