Skip to content

Commit

Permalink
updates for 0.6.0 release
Browse files Browse the repository at this point in the history
- bump version number
- update ChangeLog
  • Loading branch information
slabasan committed Sep 15, 2022
1 parent d341331 commit 132ab60
Show file tree
Hide file tree
Showing 8 changed files with 40 additions and 9 deletions.
19 changes: 19 additions & 0 deletions ChangeLog.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,22 @@
# Thu Sept 15 2022 Stephanie Brink <[email protected]> v0.6.0
Version 0.6.0 is a major release.

### New features
* Add python wrappers and python module pyVariorum
* Support for new architectures: Intel discrete GPUs, AMD GPUs through ROCm-SMI

### API changes
* Update JSON APIs to use char* instead of json_t*
* Creates new variorum_topology.h header to expose get topology APIs

### Other notable changes
* VARIORUM_LOG moved from a build variable to an environment variable
* Update architecture-related names to be more granular, for example,
VARIORUM_WITH_AMD became VARIORUM_WITH_AMD_CPU and VARIORUM_WITH_AMD_GPU, and
SandyBridge_2A.h became Intel_06_2A.h
* Standardized examples with -h and -v flags, for printing the help menu and
Variorum version, respectively

# Wed Jun 22 2022 Stephanie Brink <[email protected]> v0.5.0
Version 0.5.0 is a major release.

Expand Down
4 changes: 2 additions & 2 deletions README
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,12 @@
Welcome to Variorum, a platform-agnostic library exposing monitor and control
interfaces for several features in hardware architectures.

version 0.5.0
version 0.6.0


Last Update
-----------
15 June 2022
15 September 2022


Webpages
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.5.0
0.6.0
2 changes: 1 addition & 1 deletion src/docs/dox/Doxyfile
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ PROJECT_NAME = "variorum"
# could be handy for archiving the generated documentation or if some version
# control system is used.

PROJECT_NUMBER = 0.5.0
PROJECT_NUMBER = 0.6.0

# Using the PROJECT_BRIEF tag one can provide an optional one line description
# for a project that appears at the top of each page and should give viewer a
Expand Down
2 changes: 1 addition & 1 deletion src/docs/dox/Doxyfile.in
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ PROJECT_NAME = "variorum"
# could be handy for archiving the generated documentation or if some version
# control system is used.

PROJECT_NUMBER = 0.5.0
PROJECT_NUMBER = 0.6.0

# Using the PROJECT_BRIEF tag one can provide an optional one line description
# for a project that appears at the top of each page and should give viewer a
Expand Down
12 changes: 12 additions & 0 deletions src/docs/sphinx/Releases.rst
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,18 @@
Variorum is under constant development. So, we recommend using our ``dev``
branch, which contains our latest features.

********
v0.6.0
********

09/15/2022: Major release adds support for two new architectures, Intel discrete
GPUs and AMD GPUs, adds python wrappers and a pyVariorum python module, updates
existing JSON APIs to use char* instead of json_t*, creates new
variorum_topology.h header to expose get topology APIs, moves VARIORUM_LOG from
a build variable to an environment variable, standardizes examples with -h and
-v flags. `v0.6.0 tarball here
<https://github.com/LLNL/variorum/archive/v0.6.0.tar.gz>`_.

********
v0.5.0
********
Expand Down
4 changes: 2 additions & 2 deletions src/docs/sphinx/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -59,9 +59,9 @@
# built documents.
#
# The short X.Y version.
version = '0.5.0'
version = '0.6.0'
# The full version, including alpha/beta/rc tags.
release = '0.5.0'
release = '0.6.0'

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down
4 changes: 2 additions & 2 deletions src/docs/sphinx/conf.py.in
Original file line number Diff line number Diff line change
Expand Up @@ -59,9 +59,9 @@ copyright = u'2019-2022, LLNS'
# built documents.
#
# The short X.Y version.
version = '0.5.0'
version = '0.6.0'
# The full version, including alpha/beta/rc tags.
release = '0.5.0'
release = '0.6.0'

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down

0 comments on commit 132ab60

Please sign in to comment.