Skip to content

Commit

Permalink
Correct software schema
Browse files Browse the repository at this point in the history
  • Loading branch information
eschnett committed May 30, 2018
1 parent 25c233a commit 92793d1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Expand Up @@ -6,7 +6,7 @@ cmake_policy(SET CMP0048 NEW)
set(CMAKE_DISABLE_IN_SOURCE_BUILD ON)
set(CMAKE_DISABLE_SOURCE_CHANGES ON)

project(asdf-cxx VERSION 2.0.0 LANGUAGES CXX)
project(asdf-cxx VERSION 2.0.1 LANGUAGES CXX)
set(PROJECT_DESCRIPTION
"asdf-cxx (Advanced Scientific Data Format), C++ implementation")
set(PROJECT_URL "https://github.com/eschnett/asdf-cxx")
Expand Down
2 changes: 1 addition & 1 deletion asdf.cpp
Expand Up @@ -12,7 +12,7 @@ YAML::Node software(const string &name, const string &author,
YAML::Node node;
node.SetTag("tag:stsci.edu:asdf/core/software-1.0.0");
assert(!name.empty());
node[name] = name;
node["name"] = name;
if (!author.empty())
node["author"] = author;
if (!homepage.empty())
Expand Down

0 comments on commit 92793d1

Please sign in to comment.