Skip to content

Commit

Permalink
Update changelog, fix pre-commit hooks
Browse files Browse the repository at this point in the history
  • Loading branch information
Tommel71 committed Dec 3, 2024
1 parent 0eb98f7 commit fe3c5a0
Show file tree
Hide file tree
Showing 7 changed files with 15 additions and 7 deletions.
4 changes: 3 additions & 1 deletion .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -31,4 +31,6 @@ repos:
- id: update-openapi-version
name: Update OpenAPI Version
entry: make update-openapi-version
language: system
pass_filenames: false
language: system
always_run: true
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,12 @@ 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/).

## [24.11.2] - 2024-12-03

### Fixed

- Return concepts with tags

## [24.11.1] - 2024-11-27

### Added
Expand Down
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
all: format lint

GS_REST_SERVICE_VERSION ?= "24.11.1"
GS_REST_SERVICE_VERSIONM ?= "1.8.1"
GS_REST_SERVICE_VERSION ?= "24.11.2"
GS_REST_SERVICE_VERSIONM ?= "1.8.2"
GS_REST_DEV_PORT ?= 9000

test:
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ The GraphSense REST Interface provides access to denormalized views computed
by the [graphsense-transformation][graphsense-transformation] pipeline.
It is used by the [graphsense-dashboard][graphsense-dashboard] component.

It is based on a server stub generated by the [OpenAPI Generator][openapi-generator] project against the [OpenAPI specification](./openapi_spec/graphsense.yaml) version 1.8.1.
It is based on a server stub generated by the [OpenAPI Generator][openapi-generator] project against the [OpenAPI specification](./openapi_spec/graphsense.yaml) version 1.8.2.
It uses the [Connexion][connexion] library on top of [aiohttp][aiohttp].

*Note:* This `README.md` is also generated. Changes must be made in
Expand Down
2 changes: 1 addition & 1 deletion openapi_server/openapi/openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ info:
name: Iknaio Cryptoasset Analytics GmbH
description: GraphSense API provides programmatic access to various ledgers' addresses, entities, blocks, transactions and tags for automated and highly efficient forensics tasks.
title: GraphSense API
version: 1.8.1
version: 1.8.2
servers:
- url: https://api.ikna.io
paths:
Expand Down
2 changes: 1 addition & 1 deletion openapi_spec/graphsense.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ info:
contact:
name: Iknaio Cryptoasset Analytics GmbH
email: [email protected]
version: "1.8.1"
version: "1.8.2"
servers:
- url: 'https://api.ikna.io'
paths:
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
from setuptools import setup, find_packages

NAME = "openapi_server"
VERSION = "24.11.1"
VERSION = "24.11.2"

# To install the library, run the following
#
Expand Down

0 comments on commit fe3c5a0

Please sign in to comment.