Skip to content

Commit

Permalink
0.109.1 changelog, readme, macos-11 for Github Actions
Browse files Browse the repository at this point in the history
  • Loading branch information
tonsky committed Dec 28, 2022
1 parent 87d111a commit 8cefcf0
Show file tree
Hide file tree
Showing 4 changed files with 18 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ on:

jobs:
build_macos:
runs-on: macos-10.15
runs-on: macos-11
steps:
- uses: actions/checkout@v3
with:
Expand Down
13 changes: 13 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,16 @@
# 0.109.1 - Dec 28, 2022

Changed:

- [ BREAKING ] Windows and Linux platform artifacts now have architecture classifiers, consistent with macOS (skija-windows -> skija-windows-x64, skija-linux -> skija-linux-x64) #34 via @Glavo
- [ BREAKING ] Platform was split into Architecture and OperatingSystem #34 via @Glavo

Added:

- jmods are now built and uploaded to Github Releases #34 via @Glavo
- `skija.loadFromLibraryPath` system property to load native libraries from system locations #34 via @Glavo
- `skija.library.path` system property to load native libraries from custom location #34 via @Glavo

# 0.109.0 - Dec 15, 2022

Added:
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -174,8 +174,8 @@ Platform | `${artifact}` | `${version}`
------------|---------------------|-------------
macOS Intel | `skija-macos-x64` | ![version](https://img.shields.io/maven-central/v/io.github.humbleui/skija-macos-x64)
macOS M1 | `skija-macos-arm64` | ![version](https://img.shields.io/maven-central/v/io.github.humbleui/skija-macos-arm64)
Linux | `skija-linux` | ![version](https://img.shields.io/maven-central/v/io.github.humbleui/skija-linux)
Windows | `skija-windows` | ![version](https://img.shields.io/maven-central/v/io.github.humbleui/skija-windows)
Linux | `skija-linux-x64` | ![version](https://img.shields.io/maven-central/v/io.github.humbleui/skija-linux-x64)
Windows | `skija-windows-x64` | ![version](https://img.shields.io/maven-central/v/io.github.humbleui/skija-windows-x64)

For simplicity or if your build system is not smart enough to select artifact based on OS, you can add all four as dependencies—they will not conflict.

Expand Down
4 changes: 2 additions & 2 deletions docs/Getting Started.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@
Add ONE of these dependencies to your ant/maven/gradle/bazel:

```
io.github.humbleui:skija-windows:${version}
io.github.humbleui:skija-linux:${version}
io.github.humbleui:skija-windows-x64:${version}
io.github.humbleui:skija-linux-x64:${version}
io.github.humbleui:skija-macos-x64:${version}
io.github.humbleui:skija-macos-arm64:${version}
```
Expand Down

0 comments on commit 8cefcf0

Please sign in to comment.