Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
L
libcifpp
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
open
libcifpp
Commits
8c064e7c
Unverified
Commit
8c064e7c
authored
Nov 07, 2022
by
Maarten L. Hekkelman
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
version bump
parent
c15a8bd1
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
6 additions
and
23 deletions
+6
-23
.gitignore
+1
-0
CMakeLists.txt
+1
-1
changelog
+4
-0
src/revision.hpp
+0
-22
No files found.
.gitignore
View file @
8c064e7c
...
@@ -15,3 +15,4 @@ rsrc/feature-request.txt
...
@@ -15,3 +15,4 @@ rsrc/feature-request.txt
test/test-create_sugar_?.cif
test/test-create_sugar_?.cif
test/oprofile_data/
test/oprofile_data/
test/perf.data*
test/perf.data*
src/revision.hpp
CMakeLists.txt
View file @
8c064e7c
...
@@ -25,7 +25,7 @@
...
@@ -25,7 +25,7 @@
cmake_minimum_required
(
VERSION 3.16
)
cmake_minimum_required
(
VERSION 3.16
)
# set the project name
# set the project name
project
(
cifpp VERSION 5.0.
1
LANGUAGES CXX
)
project
(
cifpp VERSION 5.0.
2
LANGUAGES CXX
)
list
(
PREPEND CMAKE_MODULE_PATH
"
${
CMAKE_CURRENT_SOURCE_DIR
}
/cmake"
)
list
(
PREPEND CMAKE_MODULE_PATH
"
${
CMAKE_CURRENT_SOURCE_DIR
}
/cmake"
)
...
...
changelog
View file @
8c064e7c
Version
5.0.2
-
Fix
export
of
CISPEP
records
in
PDB
format
-
Better
support
for
exporting
package_source
Version
5.0.1
Version
5.0.1
-
Fix
loading
dictionaries
-
Fix
loading
dictionaries
-
Support
for
cifv1
.0
files
-
Support
for
cifv1
.0
files
...
...
src/revision.hpp
deleted
100644 → 0
View file @
c15a8bd1
// Generated revision file
#pragma once
#include <ostream>
const
char
kLibCIFPPProjectName
[]
=
"cifpp"
;
const
char
kLibCIFPPVersionNumber
[]
=
"5.0.1"
;
const
char
kLibCIFPPVersionGitTag
[]
=
"64e40e7"
;
const
char
kLibCIFPPBuildInfo
[]
=
"830*"
;
const
char
kLibCIFPPBuildDate
[]
=
"2022-11-07T11:26:40Z"
;
inline
void
write_version_string
(
std
::
ostream
&
os
,
bool
verbose
)
{
os
<<
kLibCIFPPProjectName
<<
" version "
<<
kLibCIFPPVersionNumber
<<
std
::
endl
;
if
(
verbose
)
{
os
<<
"build: "
<<
kLibCIFPPBuildInfo
<<
' '
<<
kLibCIFPPBuildDate
<<
std
::
endl
;
if
(
kLibCIFPPVersionGitTag
[
0
]
!=
0
)
os
<<
"git tag: "
<<
kLibCIFPPVersionGitTag
<<
std
::
endl
;
}
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a 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