Skip to content

Commit

Permalink
Release v0.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
rezib committed Jan 22, 2024
1 parent 53ca367 commit 9763cff
Show file tree
Hide file tree
Showing 6 changed files with 13 additions and 10 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,8 @@ and this project adheres to

## Unreleased

## [0.3.0] - 2024-01-22

### Added
- ui: new web UI (in _beta_ version)
- schema:
Expand Down Expand Up @@ -189,3 +191,4 @@ and this project adheres to
[unreleased]: https://github.com/rackslab/racksdb/compare/v0.2.0...HEAD
[0.1.0~beta]: https://github.com/rackslab/racksdb/releases/tag/v0.1.0-beta
[0.2.0]: https://github.com/rackslab/racksdb/releases/tag/v0.2.0
[0.3.0]: https://github.com/rackslab/racksdb/releases/tag/v0.3.0
12 changes: 6 additions & 6 deletions docs/modules/usage/attachments/openapi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -825,10 +825,10 @@ components:
type: object
info:
title: RacksDB REST API
version: 0.2.0
version: 0.3.0
openapi: 3.0.0
paths:
/v0.2.0/datacenters:
/v0.3.0/datacenters:
get:
description: Get information about datacenters
parameters:
Expand Down Expand Up @@ -889,7 +889,7 @@ paths:
$ref: '#/components/schemas/RacksDBDatacenter'
type: array
description: successful operation
/v0.2.0/draw/<entity>/<name>.<format>:
/v0.3.0/draw/<entity>/<name>.<format>:
post:
description: Draw an entity
parameters:
Expand Down Expand Up @@ -956,7 +956,7 @@ paths:
$ref: '#/components/schemas/Error'
description: Unsupported drawing parameters format or unable to load drawing
parameters schema
/v0.2.0/infrastructures:
/v0.3.0/infrastructures:
get:
description: Get information about infrastructures
parameters:
Expand Down Expand Up @@ -1017,7 +1017,7 @@ paths:
$ref: '#/components/schemas/RacksDBInfrastructure'
type: array
description: successful operation
/v0.2.0/nodes:
/v0.3.0/nodes:
get:
description: Get information about nodes
parameters:
Expand Down Expand Up @@ -1084,7 +1084,7 @@ paths:
$ref: '#/components/schemas/RacksDBNode'
type: array
description: successful operation
/v0.2.0/racks:
/v0.3.0/racks:
get:
description: Get information about racks
parameters:
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"

[project]
name = "RacksDB"
version = "0.2.0"
version = "0.3.0"
description = "Modelize your datacenters infrastructures in YAML database"
license = {text = "GPLv3+"}
requires-python = ">=3.6"
Expand Down
2 changes: 1 addition & 1 deletion racksdb/web/ui/public/config.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{
"API_SERVER": "http://localhost:5000/",
"API_VERSION": "v0.2.0"
"API_VERSION": "v0.3.0"
}
2 changes: 1 addition & 1 deletion schemas/drawings.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# RacksDB drawing parameters schema

_version: 0.2.0
_version: 0.3.0

_content:
properties:
Expand Down
2 changes: 1 addition & 1 deletion schemas/racksdb.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# RacksDB database schema

_version: 0.2.0
_version: 0.3.0

_content:
properties:
Expand Down

0 comments on commit 9763cff

Please sign in to comment.