Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
C
caosdb-cpplib
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
caosdb
Software
caosdb-cpplib
Commits
acd4b53c
Verified
Commit
acd4b53c
authored
Jul 13, 2022
by
Timm Fitschen
Browse files
Options
Downloads
Patches
Plain Diff
REL: prepare release 0.2.0
parent
507d4e3e
Branches
Branches containing commit
Tags
Tags containing commit
1 merge request
!42
Release 0.2.0
Pipeline
#25882
passed
Jul 15, 2022
Stage: info
Stage: setup
Stage: test
Stage: deploy
Pipeline: CaosDB Octave library
#25885
Pipeline: caosdb-cppinttest
#25884
Pipeline: caosdb-julialib
#25883
Changes
5
Pipelines
3
Show whitespace changes
Inline
Side-by-side
Showing
5 changed files
CMakeLists.txt
+3
-3
3 additions, 3 deletions
CMakeLists.txt
conanfile.py
+1
-1
1 addition, 1 deletion
conanfile.py
doc/CHANGELOG.md
+2
-1
2 additions, 1 deletion
doc/CHANGELOG.md
doc/DEPENDENCIES.md
+2
-2
2 additions, 2 deletions
doc/DEPENDENCIES.md
doc/FEATURES.md
+15
-5
15 additions, 5 deletions
doc/FEATURES.md
with
23 additions
and
12 deletions
CMakeLists.txt
+
3
−
3
View file @
acd4b53c
...
...
@@ -20,10 +20,10 @@
cmake_minimum_required
(
VERSION 3.13
)
set
(
libcaosdb_VERSION 0.
1.3
)
set
(
libcaosdb_VERSION 0.
2.0
)
set
(
libcaosdb_COMPATIBLE_SERVER_VERSION_MAJOR 0
)
set
(
libcaosdb_COMPATIBLE_SERVER_VERSION_MINOR
7
)
set
(
libcaosdb_COMPATIBLE_SERVER_VERSION_PATCH
3
)
set
(
libcaosdb_COMPATIBLE_SERVER_VERSION_MINOR
8
)
set
(
libcaosdb_COMPATIBLE_SERVER_VERSION_PATCH
0
)
set
(
libcaosdb_COMPATIBLE_SERVER_VERSION_PRE_RELEASE
""
)
project
(
libcaosdb
...
...
This diff is collapsed.
Click to expand it.
conanfile.py
+
1
−
1
View file @
acd4b53c
...
...
@@ -3,7 +3,7 @@ from conans import ConanFile, CMake, tools
class
CaosdbConan
(
ConanFile
):
name
=
"
caosdb
"
version
=
"
0.2.0
-dev
"
version
=
"
0.2.0
"
license
=
"
AGPL-3.0-or-later
"
author
=
"
Timm C. Fitschen <t.fitschen@indiscale.com>
"
url
=
"
https://gitlab.indiscale.com/caosdb/src/caosdb-cpplib.git
"
...
...
This diff is collapsed.
Click to expand it.
doc/CHANGELOG.md
+
2
−
1
View file @
acd4b53c
...
...
@@ -5,7 +5,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.1.0/
)
,
and this project adheres to
[
Semantic Versioning
](
https://semver.org/spec/v2.0.0.html
)
.
## [Unreleased]
## [0.2.0] - 2022-07-13
(Timm Fitschen)
### Added
...
...
This diff is collapsed.
Click to expand it.
doc/DEPENDENCIES.md
+
2
−
2
View file @
acd4b53c
...
...
@@ -3,7 +3,7 @@
## General ##
```
>=conan-1.
43
(e.g. with `pip install conan`)
>=conan-1.
50.0
(e.g. with `pip install conan`)
>=cmake-3.13
>=gcc-10.2.0 | >=clang-11
```
...
...
@@ -16,7 +16,7 @@
```
doxygen
>=python-3.
7
>=python-3.
8
>=pip-21.0.1
python packages from the `doc/requirements.txt` file
```
...
...
This diff is collapsed.
Click to expand it.
doc/FEATURES.md
+
15
−
5
View file @
acd4b53c
...
...
@@ -22,18 +22,28 @@ serve as just that -- minimal testing.
## CaosDB Entitiy API
This library implements a subset of the CaosDB Entitiy API (caosdb.entity.v1) as a client.
This library implements a subset of the CaosDB Entitiy API (caosdb.entity.v1)
as a client.
Current limitations: The implementation does not support mixing retrievals with write-transactions.
Current limitations: The implementation does not support mixing retrievals with
write-transactions.
## CaosDB Info API
This library implements the CaosDB Info API (caosdb.info.v1) as a client without limitations.
This library implements the CaosDB Info API (caosdb.info.v1) as a client
without limitations.
## CaosDB ACM (Access Control Management) API
This library implements small parts of the experimental ACM API
(caosdb.acm.v1alpha1) as a client.
## Thread-safety and Concurrency
Currently, the library should not be considered thread-safe.
The
`caosdb::transaction::Transaction`
class is designed with an with an
interface ready for concurrent and asyncronous transactions. However, the
functions are actually implemented in a blocking, synchronous way.
interface ready for concurrent and asyncronous transactions. While it is
possible to execute transactions in non-blocking mode and call
`GetStatus`
concurrently, it is not possible to use any of the non-const methods of the
`Transaction`
class in a thread-safe way.
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment