Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
Q
QuarkDB
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Container registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
eos
QuarkDB
Commits
eb4f16d9
Commit
eb4f16d9
authored
5 years ago
by
Georgios Bitzes
Browse files
Options
Downloads
Patches
Plain Diff
Include patch version in version string, even when zero
parent
2d2e1e04
No related branches found
No related tags found
No related merge requests found
Pipeline
#1294190
passed
5 years ago
Stage: build
Stage: test
Stage: publish
Changes
2
Pipelines
10
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
CHANGELOG.md
+2
-0
2 additions, 0 deletions
CHANGELOG.md
genversion.py
+1
-4
1 addition, 4 deletions
genversion.py
with
3 additions
and
4 deletions
CHANGELOG.md
+
2
−
0
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.
...
...
This diff is collapsed.
Click to expand it.
genversion.py
+
1
−
4
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
)
...
...
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