diff --git a/CHANGELOG.md b/CHANGELOG.md index 5c9a012..e5ee52e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,7 +4,7 @@ All notable changes to this project will be documented in this file. 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.4.0] - 2020-12-27 ### Added - indexer.py now indexes views and downloads for communities and collections - API endpoints for /communities, /community/id, /collections, and /collections/id diff --git a/dspace_statistics_api/config.py b/dspace_statistics_api/config.py index 2365b7a..64667d1 100644 --- a/dspace_statistics_api/config.py +++ b/dspace_statistics_api/config.py @@ -16,6 +16,6 @@ DATABASE_PORT = os.environ.get("DATABASE_PORT", "5432") # the vanilla DSpace REST API. DSPACE_STATISTICS_API_URL = os.environ.get("DSPACE_STATISTICS_API_URL", "") -VERSION = "1.4.0-dev" +VERSION = "1.4.0" # vim: set sw=4 ts=4 expandtab: diff --git a/pyproject.toml b/pyproject.toml index f0e1a85..c0c74b4 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "dspace-statistics-api" -version = "1.4.0-dev" +version = "1.4.0" description = "A simple REST API to expose Solr view and download statistics for items, communities, and collections in a DSpace repository." authors = ["Alan Orth "] license = "GPL-3.0-only"