Skip to content

Commit 89115e0

Browse files
author
getsentry-bot
committed
Merge branch 'release/0.14.0'
2 parents 29893c9 + 86b3a6e commit 89115e0

File tree

5 files changed

+58
-55
lines changed

5 files changed

+58
-55
lines changed

.github/workflows/generate-dokka.yml

Lines changed: 54 additions & 52 deletions
Original file line numberDiff line numberDiff line change
@@ -1,52 +1,54 @@
1-
name: Generate Dokka
2-
3-
on:
4-
release:
5-
types: [released]
6-
7-
# Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages
8-
permissions:
9-
contents: read
10-
pages: write
11-
id-token: write
12-
13-
jobs:
14-
generate-dokka:
15-
runs-on: ubuntu-latest
16-
environment:
17-
name: github-pages
18-
url: ${{ steps.deployment.outputs.page_url }}
19-
steps:
20-
- name: Checkout
21-
uses: actions/checkout@v4
22-
23-
- name: set up JDK 11
24-
uses: actions/setup-java@v4
25-
with:
26-
distribution: "adopt"
27-
java-version: "11"
28-
29-
- name: Cache Gradle packages
30-
uses: actions/cache@v4
31-
with:
32-
path: |
33-
~/.gradle/caches
34-
~/.gradle/wrapper
35-
key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle*', '**/gradle-wrapper.properties') }}
36-
restore-keys: |
37-
${{ runner.os }}-gradle-
38-
39-
- name: Setup Pages
40-
uses: actions/configure-pages@v5
41-
42-
- name: Generate docs with dokka
43-
run: make generateDokka
44-
45-
- name: Upload artifact
46-
uses: actions/upload-pages-artifact@v3
47-
with:
48-
path: ${{ github.workspace }}/build/dokka/htmlMultiModule
49-
50-
- name: Deploy to GitHub Pages
51-
id: deployment
52-
uses: actions/deploy-pages@v1
1+
# Disable for now until we bump the kotlin version
2+
3+
#name: Generate Dokka
4+
#
5+
#on:
6+
# release:
7+
# types: [released]
8+
#
9+
## Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages
10+
#permissions:
11+
# contents: read
12+
# pages: write
13+
# id-token: write
14+
#
15+
#jobs:
16+
# generate-dokka:
17+
# runs-on: ubuntu-latest
18+
# environment:
19+
# name: github-pages
20+
# url: ${{ steps.deployment.outputs.page_url }}
21+
# steps:
22+
# - name: Checkout
23+
# uses: actions/checkout@v4
24+
#
25+
# - name: set up JDK 11
26+
# uses: actions/setup-java@v4
27+
# with:
28+
# distribution: "adopt"
29+
# java-version: "11"
30+
#
31+
# - name: Cache Gradle packages
32+
# uses: actions/cache@v4
33+
# with:
34+
# path: |
35+
# ~/.gradle/caches
36+
# ~/.gradle/wrapper
37+
# key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle*', '**/gradle-wrapper.properties') }}
38+
# restore-keys: |
39+
# ${{ runner.os }}-gradle-
40+
#
41+
# - name: Setup Pages
42+
# uses: actions/configure-pages@v5
43+
#
44+
# - name: Generate docs with dokka
45+
# run: make generateDokka
46+
#
47+
# - name: Upload artifact
48+
# uses: actions/upload-pages-artifact@v3
49+
# with:
50+
# path: ${{ github.workspace }}/build/dokka/htmlMultiModule
51+
#
52+
# - name: Deploy to GitHub Pages
53+
# id: deployment
54+
# uses: actions/deploy-pages@v1

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Changelog
22

3-
## Unreleased
3+
## 0.14.0
44

55
### Dependencies
66

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,7 @@ Use the Kotlin Multiplatform and Cocoa SDK combinations listed in the table belo
4747
| 0.11.0 | 8.44.0 |
4848
| 0.12.0 | 8.49.0 (Xcode 16.3 compatible) |
4949
| 0.13.0 | 8.49.1 |
50+
| 0.14.0 | 8.53.1 |
5051

5152
## Usage
5253

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ android.useAndroidX=true
88
compose.version=1.3.1-rc01
99

1010
# Release information
11-
versionName=0.13.0
11+
versionName=0.14.0
1212

1313
# Increase memory for in-process compiler execution.
1414
org.gradle.jvmargs=-Xmx6g

sentry-kotlin-multiplatform-gradle-plugin/gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
id=io.sentry.kotlin.multiplatform.gradle
22
implementationClass=io.sentry.kotlin.multiplatform.gradle.SentryPlugin
3-
versionName=0.13.0
3+
versionName=0.14.0
44
group=io.sentry
55
sentryCocoaVersion=8.53.1
66

0 commit comments

Comments
 (0)