Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
eos
QuarkDB
Commits
eb4f16d9
Commit
eb4f16d9
authored
Dec 06, 2019
by
Georgios Bitzes
Browse files
Include patch version in version string, even when zero
parent
2d2e1e04
Pipeline
#1294190
passed with stages
in 52 minutes and 4 seconds
Changes
2
Pipelines
10
Hide whitespace changes
Inline
Side-by-side
CHANGELOG.md
View file @
eb4f16d9
...
...
@@ -5,6 +5,8 @@
### Bug fixes
-
Locality hints ending with a pipe symbol (|) could subsequently trigger an
assertion and crash when encountered during
``LHSCAN``
, due to faulty key parsing code.
The pipe symbol (|) has special meaning inside internal QuarkDB keys, and is used
to escape field separators (#).
### New features
-
Addition of
``quarkdb-server``
binary to allow running QDB without XRootD.
...
...
genversion.py
View file @
eb4f16d9
...
...
@@ -45,10 +45,7 @@ class SoftwareVersion:
if
self
.
patch
==
None
:
assert
self
.
miniPatch
==
None
def
toString
(
self
):
ret
=
"{0}.{1}"
.
format
(
self
.
major
,
self
.
minor
)
if
self
.
patch
or
self
.
miniPatch
:
ret
+=
".{0}"
.
format
(
self
.
patch
)
ret
=
"{0}.{1}.{2}"
.
format
(
self
.
major
,
self
.
minor
,
self
.
patch
)
if
self
.
miniPatch
:
ret
+=
".{0}"
.
format
(
self
.
miniPatch
)
...
...
Write
Preview
Supports
Markdown
0%
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!
Cancel
Please
register
or
sign in
to comment