Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ 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]
## [0.7.0] - 2026-06-04

### Added
- cli: Environment variables `RACKSDB_DB`, `RACKSDB_SCHEMA`,
Expand Down Expand Up @@ -508,7 +508,8 @@ and this project adheres to

## [0.1.0~beta] - 2022-11-28

[unreleased]: https://github.com/rackslab/racksdb/compare/v0.6.0...HEAD
[unreleased]: https://github.com/rackslab/racksdb/compare/v0.7.0...HEAD
[0.7.0]: https://github.com/rackslab/racksdb/releases/tag/v0.7.0
[0.6.0]: https://github.com/rackslab/racksdb/releases/tag/v0.6.0
[0.5.0]: https://github.com/rackslab/racksdb/releases/tag/v0.5.0
[0.4.0]: https://github.com/rackslab/racksdb/releases/tag/v0.4.0
Expand Down
4 changes: 2 additions & 2 deletions docs/antora.yml
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
name: racksdb
title: RacksDB
version: v0.6
version: v0.7
start_page: overview:start.adoc
asciidoc:
attributes:
source-language: asciidoc@
table-caption: false
api-version: v0.6.0
api-version: v0.7.0
nav:
- modules/overview/nav.adoc
- modules/install/nav.adoc
Expand Down
14 changes: 7 additions & 7 deletions docs/modules/usage/attachments/openapi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -1063,10 +1063,10 @@ components:
type: object
info:
title: RacksDB REST API
version: 0.6.0
version: 0.7.0
openapi: 3.0.0
paths:
/v0.6.0/datacenters:
/v0.7.0/datacenters:
get:
description: Get information about datacenters
parameters:
Expand Down Expand Up @@ -1127,7 +1127,7 @@ paths:
$ref: '#/components/schemas/RacksDBDatacenter'
type: array
description: successful operation
/v0.6.0/draw/<entity>/<name>.<format>:
/v0.7.0/draw/<entity>/<name>.<format>:
get:
description: Draw an entity
parameters:
Expand Down Expand Up @@ -1564,7 +1564,7 @@ paths:
schema:
$ref: '#/components/schemas/Error'
description: Unable to load drawing parameters schema.
/v0.6.0/infrastructures:
/v0.7.0/infrastructures:
get:
description: Get information about infrastructures
parameters:
Expand Down Expand Up @@ -1625,7 +1625,7 @@ paths:
$ref: '#/components/schemas/RacksDBInfrastructure'
type: array
description: successful operation
/v0.6.0/nodes:
/v0.7.0/nodes:
get:
description: Get information about nodes
parameters:
Expand Down Expand Up @@ -1692,7 +1692,7 @@ paths:
$ref: '#/components/schemas/RacksDBNode'
type: array
description: successful operation
/v0.6.0/racks:
/v0.7.0/racks:
get:
description: Get information about racks
parameters:
Expand Down Expand Up @@ -1743,7 +1743,7 @@ paths:
$ref: '#/components/schemas/RacksDBRack'
type: array
description: successful operation
/v0.6.0/tags:
/v0.7.0/tags:
get:
description: Get tags associated to infrastructure and equipment
parameters:
Expand Down
4 changes: 2 additions & 2 deletions frontend/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion frontend/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "racksdb-webui",
"version": "0.6.0",
"version": "0.7.0",
"private": true,
"scripts": {
"dev": "vite",
Expand Down
2 changes: 1 addition & 1 deletion frontend/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.6.0"
"API_VERSION": "v0.7.0"
}
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.6.0"
version = "0.7.0"
description = "Modelize your datacenters infrastructures in YAML database"
license = {text = "MIT"}
requires-python = ">=3.6"
Expand Down
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.6.0
_version: 0.7.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.6.0
_version: 0.7.0

_content:
properties:
Expand Down
Loading