Skip to content

Commit 3013bc0

Browse files
committed
Bump docs to 1.7.5
1 parent 7974d98 commit 3013bc0

File tree

9 files changed

+33
-33
lines changed

9 files changed

+33
-33
lines changed

CONTRIBUTING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
We love pull requests from everyone.
44

5-
The test suite currently requires you run JDK version `1.7.4`.
5+
The test suite currently requires you run JDK version `1.7.5`.
66
See [#487](https://github.com/getsentry/sentry-java/issues/478)
77
for more information.
88

docs/modules/android.rst

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ Features
66

77
The Sentry Android SDK is built on top of the main Java SDK and supports all of the same
88
features, `configuration options <https://docs.sentry.io/clients/java/config/>`_, and more.
9-
Adding version ``1.7.4`` of the Android SDK to a sample application that doesn't even use
9+
Adding version ``1.7.5`` of the Android SDK to a sample application that doesn't even use
1010
Proguard only increased the release ``.apk`` size by approximately 200KB.
1111

1212
Events will be `buffered to disk <https://docs.sentry.io/clients/java/config/#buffering-events-to-disk>`_
@@ -29,9 +29,9 @@ Using Gradle (Android Studio) in your ``app/build.gradle`` add:
2929

3030
.. sourcecode:: groovy
3131

32-
compile 'io.sentry:sentry-android:1.7.4'
32+
compile 'io.sentry:sentry-android:1.7.5'
3333

34-
For other dependency managers see the `central Maven repository <https://search.maven.org/#artifactdetails%7Cio.sentry%7Csentry-android%7C1.7.4%7Cjar>`_.
34+
For other dependency managers see the `central Maven repository <https://search.maven.org/#artifactdetails%7Cio.sentry%7Csentry-android%7C1.7.5%7Cjar>`_.
3535

3636
Initialization
3737
--------------
@@ -146,7 +146,7 @@ And declare a dependency in your toplevel ``build.gradle``:
146146

147147
buildscript {
148148
dependencies {
149-
classpath 'io.sentry:sentry-android-gradle-plugin:1.7.4'
149+
classpath 'io.sentry:sentry-android-gradle-plugin:1.7.5'
150150
}
151151
}
152152

docs/modules/appengine.rst

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,22 +18,22 @@ Using Maven:
1818
<dependency>
1919
<groupId>io.sentry</groupId>
2020
<artifactId>sentry-appengine</artifactId>
21-
<version>1.7.4</version>
21+
<version>1.7.5</version>
2222
</dependency>
2323

2424
Using Gradle:
2525

2626
.. sourcecode:: groovy
2727

28-
compile 'io.sentry:sentry-appengine:1.7.4'
28+
compile 'io.sentry:sentry-appengine:1.7.5'
2929

3030
Using SBT:
3131

3232
.. sourcecode:: scala
3333

34-
libraryDependencies += "io.sentry" % "sentry-appengine" % "1.7.4"
34+
libraryDependencies += "io.sentry" % "sentry-appengine" % "1.7.5"
3535

36-
For other dependency managers see the `central Maven repository <https://search.maven.org/#artifactdetails%7Cio.sentry%7Csentry-appengine%7C1.7.4%7Cjar>`_.
36+
For other dependency managers see the `central Maven repository <https://search.maven.org/#artifactdetails%7Cio.sentry%7Csentry-appengine%7C1.7.5%7Cjar>`_.
3737

3838
Usage
3939
-----

docs/modules/jul.rst

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -27,22 +27,22 @@ Using Maven:
2727
<dependency>
2828
<groupId>io.sentry</groupId>
2929
<artifactId>sentry</artifactId>
30-
<version>1.7.4</version>
30+
<version>1.7.5</version>
3131
</dependency>
3232

3333
Using Gradle:
3434

3535
.. sourcecode:: groovy
3636

37-
compile 'io.sentry:sentry:1.7.4'
37+
compile 'io.sentry:sentry:1.7.5'
3838

3939
Using SBT:
4040

4141
.. sourcecode:: scala
4242

43-
libraryDependencies += "io.sentry" % "sentry" % "1.7.4"
43+
libraryDependencies += "io.sentry" % "sentry" % "1.7.5"
4444

45-
For other dependency managers see the `central Maven repository <https://search.maven.org/#artifactdetails%7Cio.sentry%7Csentry%7C1.7.4%7Cjar>`_.
45+
For other dependency managers see the `central Maven repository <https://search.maven.org/#artifactdetails%7Cio.sentry%7Csentry%7C1.7.5%7Cjar>`_.
4646

4747
Usage
4848
-----

docs/modules/log4j.rst

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -28,22 +28,22 @@ Using Maven:
2828
<dependency>
2929
<groupId>io.sentry</groupId>
3030
<artifactId>sentry-log4j</artifactId>
31-
<version>1.7.4</version>
31+
<version>1.7.5</version>
3232
</dependency>
3333

3434
Using Gradle:
3535

3636
.. sourcecode:: groovy
3737

38-
compile 'io.sentry:sentry-log4j:1.7.4'
38+
compile 'io.sentry:sentry-log4j:1.7.5'
3939

4040
Using SBT:
4141

4242
.. sourcecode:: scala
4343

44-
libraryDependencies += "io.sentry" % "sentry-log4j" % "1.7.4"
44+
libraryDependencies += "io.sentry" % "sentry-log4j" % "1.7.5"
4545

46-
For other dependency managers see the `central Maven repository <https://search.maven.org/#artifactdetails%7Cio.sentry%7Csentry-log4j%7C1.7.4%7Cjar>`_.
46+
For other dependency managers see the `central Maven repository <https://search.maven.org/#artifactdetails%7Cio.sentry%7Csentry-log4j%7C1.7.5%7Cjar>`_.
4747

4848
Usage
4949
-----

docs/modules/log4j2.rst

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -28,22 +28,22 @@ Using Maven:
2828
<dependency>
2929
<groupId>io.sentry</groupId>
3030
<artifactId>sentry-log4j2</artifactId>
31-
<version>1.7.4</version>
31+
<version>1.7.5</version>
3232
</dependency>
3333

3434
Using Gradle:
3535

3636
.. sourcecode:: groovy
3737

38-
compile 'io.sentry:sentry-log4j2:1.7.4'
38+
compile 'io.sentry:sentry-log4j2:1.7.5'
3939

4040
Using SBT:
4141

4242
.. sourcecode:: scala
4343

44-
libraryDependencies += "io.sentry" % "sentry-log4j2" % "1.7.4"
44+
libraryDependencies += "io.sentry" % "sentry-log4j2" % "1.7.5"
4545

46-
For other dependency managers see the `central Maven repository <https://search.maven.org/#artifactdetails%7Cio.sentry%7Csentry-log4j2%7C1.7.4%7Cjar>`_.
46+
For other dependency managers see the `central Maven repository <https://search.maven.org/#artifactdetails%7Cio.sentry%7Csentry-log4j2%7C1.7.5%7Cjar>`_.
4747

4848
Usage
4949
-----

docs/modules/logback.rst

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -28,22 +28,22 @@ Using Maven:
2828
<dependency>
2929
<groupId>io.sentry</groupId>
3030
<artifactId>sentry-logback</artifactId>
31-
<version>1.7.4</version>
31+
<version>1.7.5</version>
3232
</dependency>
3333

3434
Using Gradle:
3535

3636
.. sourcecode:: groovy
3737

38-
compile 'io.sentry:sentry-logback:1.7.4'
38+
compile 'io.sentry:sentry-logback:1.7.5'
3939

4040
Using SBT:
4141

4242
.. sourcecode:: scala
4343

44-
libraryDependencies += "io.sentry" % "sentry-logback" % "1.7.4"
44+
libraryDependencies += "io.sentry" % "sentry-logback" % "1.7.5"
4545

46-
For other dependency managers see the `central Maven repository <https://search.maven.org/#artifactdetails%7Cio.sentry%7Csentry-logback%7C1.7.4%7Cjar>`_.
46+
For other dependency managers see the `central Maven repository <https://search.maven.org/#artifactdetails%7Cio.sentry%7Csentry-logback%7C1.7.5%7Cjar>`_.
4747

4848
Usage
4949
-----

docs/modules/spring.rst

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -34,22 +34,22 @@ Using Maven:
3434
<dependency>
3535
<groupId>io.sentry</groupId>
3636
<artifactId>sentry-spring</artifactId>
37-
<version>1.7.4</version>
37+
<version>1.7.5</version>
3838
</dependency>
3939

4040
Using Gradle:
4141

4242
.. sourcecode:: groovy
4343

44-
compile 'io.sentry:sentry-spring:1.7.4'
44+
compile 'io.sentry:sentry-spring:1.7.5'
4545

4646
Using SBT:
4747

4848
.. sourcecode:: scala
4949

50-
libraryDependencies += "io.sentry" % "sentry-spring" % "1.7.4"
50+
libraryDependencies += "io.sentry" % "sentry-spring" % "1.7.5"
5151

52-
For other dependency managers see the `central Maven repository <https://search.maven.org/#artifactdetails%7Cio.sentry%7Csentry-spring%7C1.7.4%7Cjar>`_.
52+
For other dependency managers see the `central Maven repository <https://search.maven.org/#artifactdetails%7Cio.sentry%7Csentry-spring%7C1.7.5%7Cjar>`_.
5353

5454
Usage
5555
-----

docs/usage.rst

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,22 +18,22 @@ Using Maven:
1818
<dependency>
1919
<groupId>io.sentry</groupId>
2020
<artifactId>sentry</artifactId>
21-
<version>1.7.4</version>
21+
<version>1.7.5</version>
2222
</dependency>
2323

2424
Using Gradle:
2525

2626
.. sourcecode:: groovy
2727

28-
compile 'io.sentry:sentry:1.7.4'
28+
compile 'io.sentry:sentry:1.7.5'
2929

3030
Using SBT:
3131

3232
.. sourcecode:: scala
3333

34-
libraryDependencies += "io.sentry" % "sentry" % "1.7.4"
34+
libraryDependencies += "io.sentry" % "sentry" % "1.7.5"
3535

36-
For other dependency managers see the `central Maven repository <https://search.maven.org/#artifactdetails%7Cio.sentry%7Csentry%7C1.7.4%7Cjar>`_.
36+
For other dependency managers see the `central Maven repository <https://search.maven.org/#artifactdetails%7Cio.sentry%7Csentry%7C1.7.5%7Cjar>`_.
3737

3838
Capture an Error
3939
----------------

0 commit comments

Comments
 (0)