-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #19 from morucci/bp-1.10.0
Add 1.10.0 release blog post
- Loading branch information
Showing
1 changed file
with
36 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
--- | ||
title: Version 1.10.0 Release | ||
--- | ||
|
||
We are pleased to announce a new release of Monocle. | ||
|
||
Beside being mainly a maintainance release, it features: | ||
|
||
- A GitHub user' PRs crawler via the Monocle config. | ||
- A Janitor command to reset the commit date of a crawler. | ||
|
||
See the full [changelog](https://github.com/change-metrics/monocle/blob/1.10.0/CHANGELOG.md) for | ||
the complete list of changes. | ||
|
||
Here are instructions to upgrade: | ||
|
||
```Bash | ||
cd monocle | ||
|
||
# Stop the previous running version | ||
docker-compose down | ||
|
||
# Checkout the tag 1.10.0 | ||
git fetch origin | ||
git checkout -b 1.10.0 1.10.0 | ||
|
||
# Ensure to set COMPOSE_MONOCLE_VERSION=1.10.0 in .env file | ||
sed -i .env -e "/COMPOSE_MONOCLE_VERSION=.*/ d" | ||
echo "COMPOSE_MONOCLE_VERSION=1.10.0" >> .env | ||
|
||
# Fetch last images | ||
docker-compose pull | ||
|
||
# Spawn services | ||
docker-compose up -d | ||
``` |