diff --git a/README.md b/README.md
index f1995b6..1ef958e 100644
--- a/README.md
+++ b/README.md
@@ -9,7 +9,7 @@
Export your favorite GitHub repositories to Prometheus
* Use it _as a service_: See https://gh.skuzzle.de for instructions
-* Deploy it _on-premise_: `docker pull ghcr.io/skuzzle/gh-prom-exporter/gh-prom-exporter:0.0.13`
+* Deploy it _on-premise_: `docker pull ghcr.io/skuzzle/gh-prom-exporter/gh-prom-exporter:0.0.14`
## On-Premise deployment with docker
This application can easily be run as a docker container in whatever environment you like:
@@ -17,7 +17,7 @@ This application can easily be run as a docker container in whatever environment
```
docker run -p 8080:8080 \
-e WEB_ALLOWANONYMOUSSCRAPE=true \
- ghcr.io/skuzzle/gh-prom-exporter/gh-prom-exporter:0.0.13
+ ghcr.io/skuzzle/gh-prom-exporter/gh-prom-exporter:0.0.14
```
With _anonymous scraping_ allowed, you can now easily view the scrape results directly in the browser by navigating to
@@ -38,7 +38,7 @@ scrape_configs:
In case you want to enforce authenticated scrapes only, use this configuration instead:
```
docker run -p 8080:8080 \
- ghcr.io/skuzzle/gh-prom-exporter/gh-prom-exporter:0.0.13
+ ghcr.io/skuzzle/gh-prom-exporter/gh-prom-exporter:0.0.14
```
Scraping now requires a GitHub access token, otherwise the service will respond with 401/Unauthorized.
diff --git a/RELEASE_NOTES.md b/RELEASE_NOTES.md
index 3fc0ff2..16ed686 100644
--- a/RELEASE_NOTES.md
+++ b/RELEASE_NOTES.md
@@ -2,9 +2,8 @@
[![Coverage Status](https://coveralls.io/repos/github/skuzzle/gh-prom-exporter/badge.svg?branch=master)](https://coveralls.io/github/skuzzle/gh-prom-exporter?branch=master) [![Twitter Follow](https://img.shields.io/twitter/follow/skuzzleOSS.svg?style=social)](https://twitter.com/skuzzleOSS)
-* Log whole stack trace when a potential abuse was detected
-* Upgrade to Spring-Boot 2.7.3 (coming from 2.7.2)
+* Upgrade to github-api 1.308 (coming from 1.135)
```
-docker pull ghcr.io/skuzzle/gh-prom-exporter/gh-prom-exporter:0.0.13
+docker pull ghcr.io/skuzzle/gh-prom-exporter/gh-prom-exporter:0.0.14
```
diff --git a/pom.xml b/pom.xml
index 215e065..196fd8a 100644
--- a/pom.xml
+++ b/pom.xml
@@ -11,7 +11,7 @@
de.skuzzle.ghpromexporter
gh-prom-exporter
- 0.0.13
+ 0.0.14
gh-prom-exporter
Export GitHub repository metrics in prometheus format
@@ -39,7 +39,7 @@
2.7.3
2021.0.3
31.0.1-jre
- 1.135
+ 1.308
1.3.0
diff --git a/readme/RELEASE_NOTES.md b/readme/RELEASE_NOTES.md
index 28620bb..7113ba3 100644
--- a/readme/RELEASE_NOTES.md
+++ b/readme/RELEASE_NOTES.md
@@ -2,8 +2,7 @@
[![Coverage Status](https://coveralls.io/repos/github/${github.user}/${github.name}/badge.svg?branch=${github.main-branch})](https://coveralls.io/github/${github.user}/${github.name}?branch=${github.main-branch}) [![Twitter Follow](https://img.shields.io/twitter/follow/skuzzleOSS.svg?style=social)](https://twitter.com/skuzzleOSS)
-* Log whole stack trace when a potential abuse was detected
-* Upgrade to Spring-Boot 2.7.3 (coming from 2.7.2)
+* Upgrade to github-api 1.308 (coming from 1.135)
```
docker pull ${docker.image.name}:${project.version}