Skip to content

Commit

Permalink
Release v1.0.0
Browse files Browse the repository at this point in the history
The first public Monotone GA release.

Embeddable Cloud-Native Storage for events and time-series data.

This release includes core functionality listed in the official
documentation at the moment of release.

https://monotone.studio
  • Loading branch information
pmwkaa committed Apr 16, 2024
1 parent 5f8bfad commit d40bebb
Show file tree
Hide file tree
Showing 6 changed files with 30 additions and 4 deletions.
21 changes: 21 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
### Monotone Changelog

## 1.0.0 (2024-04-16)

**The first public Monotone GA release.**

Embeddable Cloud-Native Storage for events and time-series data.

This release includes core functionality listed in the official
documentation at the moment of release.

https://monotone.studio

**Features**

- Automatic Range Partitioning
- Transparent Compression
- Transparent Encryption
- Multiple Storages
- Data Tiering
- Bottomless Storage
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,9 @@ Made to match the following requirements:
- Make sense of Hot and Cold data patterns using Data Tiering

The storage architecture is inspired by a Log-Structured approach and implements a custom-made `memory-disk-cloud`
hybrid engine.
hybrid engine. Learn more about its [Architecture](ARCHITECTURE.md).

Learn more about its [Architecture](ARCHITECTURE.md).
Official [Documentation](https://monotone/studio/docs/).

----

Expand Down
1 change: 1 addition & 0 deletions VERSION
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
1.0.0
4 changes: 4 additions & 0 deletions build/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,15 @@ if ("${CMAKE_BUILD_TYPE}" STREQUAL "")
set(CMAKE_BUILD_TYPE "Debug")
endif()

file(READ "${CMAKE_SOURCE_DIR}/VERSION" MONOTONE_VERSION)
string(STRIP "${MONOTONE_VERSION}" MONOTONE_VERSION)

message(STATUS "")
message(STATUS "monotone.")
message(STATUS "")
message(STATUS "embeddable cloud-native storage for events and time-series data.")
message(STATUS "")
message(STATUS "VERSION: ${MONOTONE_VERSION}")
message(STATUS "CMAKE_BUILD_TYPE: ${CMAKE_BUILD_TYPE}")
message(STATUS "")

Expand Down
2 changes: 1 addition & 1 deletion monotone/runtime/config/config.c
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ config_prepare(Config* self)
ConfigDef defaults[] =
{
// main
{ "version", VAR_STRING, VAR_E, &self->version, "0.0", 0 },
{ "version", VAR_STRING, VAR_E, &self->version, "1.0.0", 0 },
{ "uuid", VAR_STRING, VAR_C, &self->uuid, NULL, 0 },
{ "directory", VAR_STRING, VAR_E, &self->directory, NULL, 0 },
{ "sync", VAR_BOOL, VAR_E|VAR_C|VAR_H, &self->sync, NULL, true },
Expand Down
2 changes: 1 addition & 1 deletion test/recovery/recovery_config.test.ok
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ set sync to false
open
show all
{
"version": "0.0",
"version": "1.0.0",
"uuid": "c14fb1d4-d1f7-5bf1-f256-4ad89bc47379",
"directory": "_output",
"log": true,
Expand Down

0 comments on commit d40bebb

Please sign in to comment.