From 639d574c99352983a6b0dad3413f87abceb2327a Mon Sep 17 00:00:00 2001 From: Marco Nicola Date: Sat, 16 Oct 2021 17:32:17 +0200 Subject: [PATCH] Release v1.0.0-beta --- CHANGELOG.md | 5 +++- docker-compose/config/whatsnew-config.yml | 2 +- docker-compose/docker-compose.yml | 28 +++++++++++------------ sample-config.yml | 2 +- 4 files changed, 20 insertions(+), 17 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 5f5c097..4d3fde1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,8 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). ## [Unreleased] + +## [1.0.0-beta] - 2021-10-16 ### Added - HNSW-Purger task (command `purge-hnsw`). @@ -92,7 +94,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [0.1.0] - 2021-01-25 First versioned release, ready to be tested. -[Unreleased]: https://github.com/SpecializedGeneralist/whatsnew/compare/v1.0.0-alpha.3...HEAD +[Unreleased]: https://github.com/SpecializedGeneralist/whatsnew/compare/v1.0.0-beta...HEAD +[1.0.0-beta]: https://github.com/SpecializedGeneralist/whatsnew/compare/v1.0.0-alpha.3...v1.0.0-beta [1.0.0-alpha.3]: https://github.com/SpecializedGeneralist/whatsnew/compare/v1.0.0-alpha.2...v1.0.0-alpha.3 [1.0.0-alpha.2]: https://github.com/SpecializedGeneralist/whatsnew/compare/v1.0.0-alpha.1...v1.0.0-alpha.2 [1.0.0-alpha.1]: https://github.com/SpecializedGeneralist/whatsnew/compare/v1.0.0-alpha...v1.0.0-alpha.1 diff --git a/docker-compose/config/whatsnew-config.yml b/docker-compose/config/whatsnew-config.yml index 4825b86..30aaf82 100644 --- a/docker-compose/config/whatsnew-config.yml +++ b/docker-compose/config/whatsnew-config.yml @@ -97,7 +97,7 @@ workers: retry: 25 language_filter: ['en', 'es', 'fr', 'it'] request_timeout: '30s' - user_agent: 'WhatsNew/1.0.0-alpha.3' + user_agent: 'WhatsNew/1.0.0-beta' loglevel: 'info' translator: queues: ['translator'] diff --git a/docker-compose/docker-compose.yml b/docker-compose/docker-compose.yml index ffa91a1..2337f39 100644 --- a/docker-compose/docker-compose.yml +++ b/docker-compose/docker-compose.yml @@ -86,85 +86,85 @@ services: task-jobs-recoverer: restart: 'unless-stopped' - image: 'specializedgeneralist/whatsnew:1.0.0-alpha.3' + image: 'specializedgeneralist/whatsnew:1.0.0-beta' volumes: ['./config:/config'] command: '-config=/config/whatsnew-config.yml recover-jobs' task-feed-scheduler: restart: 'unless-stopped' - image: 'specializedgeneralist/whatsnew:1.0.0-alpha.3' + image: 'specializedgeneralist/whatsnew:1.0.0-beta' volumes: ['./config:/config'] command: '-config=/config/whatsnew-config.yml schedule-feeds' task-twitter-scheduler: restart: 'unless-stopped' - image: 'specializedgeneralist/whatsnew:1.0.0-alpha.3' + image: 'specializedgeneralist/whatsnew:1.0.0-beta' volumes: ['./config:/config'] command: '-config=/config/whatsnew-config.yml schedule-twitter' task-gdelt-fetcher: restart: 'unless-stopped' - image: 'specializedgeneralist/whatsnew:1.0.0-alpha.3' + image: 'specializedgeneralist/whatsnew:1.0.0-beta' volumes: ['./config:/config'] command: '-config=/config/whatsnew-config.yml fetch-gdelt' worker-feed-fetcher: restart: 'unless-stopped' - image: 'specializedgeneralist/whatsnew:1.0.0-alpha.3' + image: 'specializedgeneralist/whatsnew:1.0.0-beta' volumes: ['./config:/config'] command: '-config=/config/whatsnew-config.yml fetch-feeds' worker-twitter-scraper: restart: 'unless-stopped' - image: 'specializedgeneralist/whatsnew:1.0.0-alpha.3' + image: 'specializedgeneralist/whatsnew:1.0.0-beta' volumes: ['./config:/config'] command: '-config=/config/whatsnew-config.yml scrape-twitter' worker-web-scraper: restart: 'unless-stopped' - image: 'specializedgeneralist/whatsnew:1.0.0-alpha.3' + image: 'specializedgeneralist/whatsnew:1.0.0-beta' volumes: ['./config:/config'] command: '-config=/config/whatsnew-config.yml scrape-web' worker-translator: restart: 'unless-stopped' - image: 'specializedgeneralist/whatsnew:1.0.0-alpha.3' + image: 'specializedgeneralist/whatsnew:1.0.0-beta' volumes: ['./config:/config'] command: '-config=/config/whatsnew-config.yml translate' worker-zero-shot-classifier: restart: 'unless-stopped' - image: 'specializedgeneralist/whatsnew:1.0.0-alpha.3' + image: 'specializedgeneralist/whatsnew:1.0.0-beta' volumes: ['./config:/config'] command: '-config=/config/whatsnew-config.yml zero-shot-classify' # Note: you should remove this service if you don't have a custom text classifier. worker-text-classifier: restart: 'unless-stopped' - image: 'specializedgeneralist/whatsnew:1.0.0-alpha.3' + image: 'specializedgeneralist/whatsnew:1.0.0-beta' volumes: ['./config:/config'] command: '-config=/config/whatsnew-config.yml classify-text' worker-geo-parser: restart: 'unless-stopped' - image: 'specializedgeneralist/whatsnew:1.0.0-alpha.3' + image: 'specializedgeneralist/whatsnew:1.0.0-beta' volumes: ['./config:/config'] command: '-config=/config/whatsnew-config.yml parse-geo' worker-vectorizer: restart: 'unless-stopped' - image: 'specializedgeneralist/whatsnew:1.0.0-alpha.3' + image: 'specializedgeneralist/whatsnew:1.0.0-beta' volumes: ['./config:/config'] command: '-config=/config/whatsnew-config.yml vectorize' worker-duplicate-detector: restart: 'unless-stopped' - image: 'specializedgeneralist/whatsnew:1.0.0-alpha.3' + image: 'specializedgeneralist/whatsnew:1.0.0-beta' volumes: ['./config:/config'] command: '-config=/config/whatsnew-config.yml detect-duplicates' worker-information-extractor: restart: 'unless-stopped' - image: 'specializedgeneralist/whatsnew:1.0.0-alpha.3' + image: 'specializedgeneralist/whatsnew:1.0.0-beta' volumes: ['./config:/config'] command: '-config=/config/whatsnew-config.yml extract-information' diff --git a/sample-config.yml b/sample-config.yml index d596bbc..99eb946 100644 --- a/sample-config.yml +++ b/sample-config.yml @@ -97,7 +97,7 @@ workers: retry: 25 language_filter: ['en', 'es', 'fr', 'it'] request_timeout: '30s' - user_agent: 'WhatsNew/0.0.0' + user_agent: 'WhatsNew/1.0.0-beta' loglevel: 'info' translator: queues: ['translator']