Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

v2.3.0 #15

Merged
merged 2 commits into from
Nov 30, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ cmake_policy(SET CMP0048 NEW) # VERSION option to project()

# Note: the version number uses Semantic Versioning http://semver.org/
project(NeuroML_API
VERSION 2.2.0
VERSION 2.3.0
DESCRIPTION "C++ API for NeuroML 2"
HOMEPAGE_URL "https://github.com/NeuroML/NeuroML_API"
)
Expand All @@ -21,7 +21,7 @@ set(CMAKE_MODULE_PATH ${CMAKE_MODULE_PATH} ${PROJECT_SOURCE_DIR}/cmake/modules)
############################

# Which schema to provide the API for
set(NeuroML_SCHEMA_PATH "${PROJECT_SOURCE_DIR}/src/schema/NeuroML_v2.2.xsd"
set(NeuroML_SCHEMA_PATH "${PROJECT_SOURCE_DIR}/src/schema/NeuroML_v2.3.xsd"
CACHE PATH
"Path to the schema file to base the API on.")

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ On Fedora and other RPM based distributions, you can install Xerces and xsd
from the standard repositories using `dnf` or `yum`:

```
sudo dnf install xsd xerces-c-devel
sudo dnf install xsd xerces-c-devel doxygen
```

If you install xsd in a non-standard location, please set the `XSD_ROOT`
Expand Down
Loading
Loading