Skip to content

Commit 79ad4c5

Browse files
committed
Updated Build and README.md
1 parent a344350 commit 79ad4c5

File tree

2 files changed

+25
-3
lines changed

2 files changed

+25
-3
lines changed

.circleci/config.yml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ version: 2
22
jobs:
33
test:
44
docker:
5-
- image: openjdk:11
5+
- image: openjdk:17
66
steps:
77
- checkout
88
- run:
@@ -17,7 +17,7 @@ jobs:
1717
path: test-results
1818
deploy:
1919
docker:
20-
- image: openjdk:11
20+
- image: openjdk:17
2121
steps:
2222
- add_ssh_keys:
2323
fingerprints:
@@ -49,4 +49,6 @@ workflows:
4949
- test
5050
filters:
5151
branches:
52-
only: master
52+
only:
53+
- master
54+
- 2.x

README.md

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,26 @@
22

33
Java SDK for integrating with the [Smartling API].
44

5+
> **Note**: Version 2.x requires Java 17+. If you need Java 8 compatibility, use version 1.x (maintenance mode).
6+
7+
## SDK Versions
8+
9+
We maintain two major versions of this SDK:
10+
11+
### Version 2.x (Current - Recommended)
12+
- **Branch**: `2.x`
13+
- **Java Compatibility**: Java 17+
14+
- **Status**: Active development
15+
- **Recommendation**: All new projects should use 2.x. Existing projects are strongly encouraged to migrate.
16+
17+
### Version 1.x (Maintenance Mode)
18+
- **Branch**: `master`
19+
- **Java Compatibility**: Java 8+
20+
- **Status**: Maintenance only - critical fixes and security updates
21+
- **Future**: Will be deprecated once migration to 2.x is complete
22+
23+
We strongly encourage all users to migrate to version 2.x to benefit from modern Java features, improved performance, and continued feature development. Version 1.x will eventually be deprecated as Smartling projects and clients complete their migration.
24+
525
## Using this SDK
626

727
The Smartling API SDK is distributed via Maven Central and is compatible with JDK 1.7

0 commit comments

Comments
 (0)