Skip to content
Open
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
6 changes: 5 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,11 @@
# CHANGELOG

# 35
### Added
* Vanilla Ice Cream (35)

# 34
Applied new version-name strategy - now version equals latest supported Android SDK platform
Applied new version-name strategy
### Added
* Upside Down Cake (34)

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ java \
--add-exports=jdk.compiler/com.sun.tools.javac.parser=ALL-UNNAMED \
--add-exports=jdk.compiler/com.sun.tools.javac.tree=ALL-UNNAMED \
--add-exports=jdk.compiler/com.sun.tools.javac.util=ALL-UNNAMED \
-jar enhance-34-all.jar -sdk 34 -format google
-jar enhance-35-all.jar -sdk 35 -format google
```

## Thanks
Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ plugins {
}

group 'io.noties'
version '34'
version '35'

sourceCompatibility = JavaVersion.VERSION_11
targetCompatibility = JavaVersion.VERSION_11
Expand Down
3 changes: 2 additions & 1 deletion src/main/java/io/noties/enhance/Api.java
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,8 @@ public enum Api {
SDK_31(31, "12", "Android S"),
SDK_32(32, "12", "Android S_V2"),
SDK_33(33, "13", "Tiramisu"),
SDK_34(34, "14", "Upside Down Cake")
SDK_34(34, "14", "Upside Down Cake"),
SDK_35(35, "15", "Vanilla Ice Cream")
;

public final int sdkInt;
Expand Down