Skip to content

Commit

Permalink
Bumped version to 0.0.2 (CrayLabs#35)
Browse files Browse the repository at this point in the history
  • Loading branch information
AlyssaCote authored Dec 14, 2023
1 parent 473d975 commit d139b0a
Show file tree
Hide file tree
Showing 15 changed files with 16 additions and 16 deletions.
2 changes: 1 addition & 1 deletion doc/changelog.rst
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ Detailed Notes
.. _PRXXX: https://github.com/CrayLabs/SmartDashboard/pull/XXX


0.0.1
0.0.2
-----

Released on *TBD*, 2023
Expand Down
2 changes: 1 addition & 1 deletion doc/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
author = 'Hewlett Packard Enterprise'

# The full version, including alpha/beta/rc tags
version = "0.0.1"
version = "0.0.2"

# The full version, including alpha/beta/rc tags
release = version
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ build-backend = "setuptools.build_meta"

[project]
name = "smartdashboard"
version = "0.0.1"
version = "0.0.2"
requires-python = ">=3.8,<3.11"
authors = [
{name = "CrayLabs: a Hewlett Packard Enterprise OSS Organization", email = "[email protected]"},
Expand Down
4 changes: 2 additions & 2 deletions smartdashboard/utils/ManifestReader.py
Original file line number Diff line number Diff line change
Expand Up @@ -87,9 +87,9 @@ def __init__(self, file_path: str) -> None:
"Version data is malformed.", file=self._file_path, exception=key
) from key

if version != "0.0.1":
if version != "0.0.2":
version_exception = Exception(
"SmartDashboard version 0.0.1 is unable to parse manifest "
"SmartDashboard version 0.0.2 is unable to parse manifest "
f"file at version {version}."
)
raise VersionIncompatibilityError(
Expand Down
2 changes: 1 addition & 1 deletion tests/utils/manifest_files/JSONDecodererror.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@

"schema info" : {
"schema_name" : "entity manifest",
"version" : "0.0.1"
"version" : "0.0.2"
},
"experiment" : {},
"runs": []
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"schema info": {
"schema_name": "entity manifest",
"version": "0.0.1"
"version": "0.0.2"
},
"experiment": {
"name": "my-experiment",
Expand Down
2 changes: 1 addition & 1 deletion tests/utils/manifest_files/malformed_apps.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"schema info": {
"schema_name": "entity manifest",
"version": "0.0.1"
"version": "0.0.2"
},
"experiment": {
"name": "my-experiment",
Expand Down
2 changes: 1 addition & 1 deletion tests/utils/manifest_files/malformed_ensembles.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"schema info": {
"schema_name": "entity manifest",
"version": "0.0.1"
"version": "0.0.2"
},
"experiment": {
"name": "my-experiment",
Expand Down
2 changes: 1 addition & 1 deletion tests/utils/manifest_files/malformed_orcs.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"schema info": {
"schema_name": "entity manifest",
"version": "0.0.1"
"version": "0.0.2"
},
"experiment": {
"name": "my-experiment",
Expand Down
2 changes: 1 addition & 1 deletion tests/utils/manifest_files/manifesttest.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"schema info": {
"schema_name": "entity manifest",
"version": "0.0.1"
"version": "0.0.2"
},
"experiment": {
"name": "my-experiment",
Expand Down
2 changes: 1 addition & 1 deletion tests/utils/manifest_files/no_apps_manifest.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"schema info": {
"schema_name": "entity manifest",
"version": "0.0.1"
"version": "0.0.2"
},
"experiment": {
"name": "my-experiment",
Expand Down
2 changes: 1 addition & 1 deletion tests/utils/manifest_files/no_ensembles_manifest.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"schema info": {
"schema_name": "entity manifest",
"version": "0.0.1"
"version": "0.0.2"
},
"experiment": {
"name": "my-experiment",
Expand Down
2 changes: 1 addition & 1 deletion tests/utils/manifest_files/no_experiment_manifest.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"schema info" : {
"schema_name" : "entity manifest",
"version" : "0.0.1"
"version" : "0.0.2"
},
"experiment" : {},
"runs": []
Expand Down
2 changes: 1 addition & 1 deletion tests/utils/manifest_files/no_orchestrator_manifest.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"schema info": {
"schema_name": "entity manifest",
"version": "0.0.1"
"version": "0.0.2"
},
"experiment": {
"name": "my-experiment",
Expand Down
2 changes: 1 addition & 1 deletion tests/utils/manifest_files/no_running.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"schema info": {
"schema_name": "entity manifest",
"version": "0.0.1"
"version": "0.0.2"
},
"experiment": {
"name": "my-experiment",
Expand Down

0 comments on commit d139b0a

Please sign in to comment.