1
0
mirror of https://github.com/ilri/dspace-statistics-api.git synced 2025-06-08 18:05:37 +02:00

Compare commits

..

2 Commits

Author SHA1 Message Date
c81588a8fe Update dependency isort to v6 2025-01-28 01:00:27 +00:00
8196d28e88 Prepare for next development version
Start development on 1.4.5-dev.
2024-09-11 15:55:53 +03:00
4 changed files with 6 additions and 4 deletions

View File

@ -4,6 +4,8 @@ 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/), 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). and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
## Unreleased
## 1.4.4 - 2024-09-11 ## 1.4.4 - 2024-09-11
### Changed ### Changed
- Update recommended Python version to 3.8+ - Update recommended Python version to 3.8+

View File

@ -18,6 +18,6 @@ DATABASE_PORT = os.environ.get("DATABASE_PORT", "5432")
# the vanilla DSpace REST API. # the vanilla DSpace REST API.
DSPACE_STATISTICS_API_URL = os.environ.get("DSPACE_STATISTICS_API_URL", "") DSPACE_STATISTICS_API_URL = os.environ.get("DSPACE_STATISTICS_API_URL", "")
VERSION = "1.4.4" VERSION = "1.4.5-dev"
# vim: set sw=4 ts=4 expandtab: # vim: set sw=4 ts=4 expandtab:

View File

@ -1,7 +1,7 @@
{ {
"openapi": "3.0.3", "openapi": "3.0.3",
"info": { "info": {
"version": "1.4.4", "version": "1.4.5-dev",
"title": "DSpace Statistics API", "title": "DSpace Statistics API",
"description": "A [Falcon-based](https://falcon.readthedocs.io/) web application to make DSpace's item, community, and collection statistics available via a simple REST API. This Swagger interface is powered by [falcon-swagger-ui](https://github.com/rdidyk/falcon-swagger-ui).", "description": "A [Falcon-based](https://falcon.readthedocs.io/) web application to make DSpace's item, community, and collection statistics available via a simple REST API. This Swagger interface is powered by [falcon-swagger-ui](https://github.com/rdidyk/falcon-swagger-ui).",
"license": { "license": {

View File

@ -1,6 +1,6 @@
[tool.poetry] [tool.poetry]
name = "dspace-statistics-api" name = "dspace-statistics-api"
version = "1.4.4" version = "1.4.5-dev"
description = "A simple REST API to expose Solr view and download statistics for items, communities, and collections in a DSpace repository." description = "A simple REST API to expose Solr view and download statistics for items, communities, and collections in a DSpace repository."
authors = ["Alan Orth <aorth@mjanja.ch>"] authors = ["Alan Orth <aorth@mjanja.ch>"]
license = "GPL-3.0-only" license = "GPL-3.0-only"
@ -16,7 +16,7 @@ falcon-swagger-ui = {git = "https://github.com/alanorth/falcon-swagger-ui.git",
[tool.poetry.group.dev.dependencies] [tool.poetry.group.dev.dependencies]
black = "^24.0.0" black = "^24.0.0"
flake8 = "^7.1.1" flake8 = "^7.1.1"
isort = "^5.13.2" isort = "^6.0.0"
pytest = "^8.3.3" pytest = "^8.3.3"
[build-system] [build-system]