Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[release] - 1.10.0 #1081

Merged
merged 1 commit into from
Nov 5, 2023
Merged
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
8 changes: 6 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,12 @@

All notable changes to this project will be documented in this file.
## [master]
### Added
### Changed
### Removed
### Fixed

## [1.10.0] - 2023-11-06

### Added

Expand All @@ -16,8 +22,6 @@ All notable changes to this project will be documented in this file.
- [crawler] `ChangeCommitPushedEvent` and `ChangeCommitForcePushedEvent` events date (`created_at`) is the commit date of the
related commit.

### Removed

### Fixed

- [crawler] Correctly handle errors and do not commit new changes.
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ the configuration.
### Start docker-compose

The docker-compose file is set to use the container image of the latest stable
release of Monocle (1.9.0). It is adviced to use the latest stable Monocle version.
release of Monocle (1.10.0). It is adviced to use the latest stable Monocle version.
However, as our CI publishes the latest (devel) container image then it is possible
to run the very last version. To do so set `COMPOSE_MONOCLE_VERSION` to `latest` in
the `.env` file.
Expand Down
4 changes: 2 additions & 2 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ services:
retries: 6
test: "curl --silent --fail localhost:8080/health || exit 1"
timeout: "60s"
image: "quay.io/change-metrics/monocle:${COMPOSE_MONOCLE_VERSION:-1.9.0}"
image: "quay.io/change-metrics/monocle:${COMPOSE_MONOCLE_VERSION:-1.10.0}"
ports:
- "${COMPOSE_MONOCLE_API_ADDR:-0.0.0.0}:${COMPOSE_MONOCLE_API_PORT:-8080}:8080"
restart: unless-stopped
Expand All @@ -33,7 +33,7 @@ services:
retries: 6
test: "curl --silent --fail localhost:9001/health || exit 1"
timeout: "60s"
image: "quay.io/change-metrics/monocle:${COMPOSE_MONOCLE_VERSION:-1.9.0}"
image: "quay.io/change-metrics/monocle:${COMPOSE_MONOCLE_VERSION:-1.10.0}"
restart: unless-stopped
volumes:
- "./etc:/etc/monocle:z"
Expand Down
2 changes: 1 addition & 1 deletion k8s/api-deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ spec:
env:
- name: MONOCLE_ELASTIC_URL
value: http://elastic:9200
image: quay.io/change-metrics/monocle:1.9.0
image: quay.io/change-metrics/monocle:1.10.0
livenessProbe:
httpGet:
path: /health
Expand Down
2 changes: 1 addition & 1 deletion k8s/crawler-deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ spec:
env:
- name: MONOCLE_PUBLIC_URL
value: http://api:8080
image: quay.io/change-metrics/monocle:1.9.0
image: quay.io/change-metrics/monocle:1.10.0
name: crawler
resources: {}
livenessProbe:
Expand Down
2 changes: 1 addition & 1 deletion monocle.cabal
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
cabal-version: 3.0
name: monocle
version: 0.1.9.0
version: 0.1.10.0
homepage: https://github.com/change-metrics/monocle#readme
bug-reports: https://github.com/change-metrics/monocle/issues
license: AGPL-3.0-only
Expand Down
Loading