Skip to content

Commit 218e468

Browse files
committed
[MINOR] 0.3 version bump
This commit concludes RC testing and changes version strings for the 0.3 release for * the Docker upload script * the CLI output of 'daphne --version' * the PyPI package Godspeed.
1 parent dc61221 commit 218e468

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

containers/publish.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ TIMESTAMP_DATE=$(date -I)
2525

2626
# swap comments to tag a specific version
2727
VERSION=$TIMESTAMP_DATE
28-
#VERSION=v0.2-rc1
28+
#VERSION=0.3
2929

3030
# read needed software versions (e.g., CUDA version,...)
3131
source ../software-package-versions.txt

src/api/internal/daphne_internal.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ void parseScriptArgs(const llvm::cl::list<string>& scriptArgsCli, unordered_map<
7575
void printVersion(llvm::raw_ostream& os) {
7676
// TODO Include some of the important build flags into the version string.
7777
os
78-
<< "DAPHNE Version 0.2\n"
78+
<< "DAPHNE Version 0.3\n"
7979
<< "An Open and Extensible System Infrastructure for Integrated Data Analysis Pipelines\n"
8080
<< "https://github.com/daphne-eu/daphne\n";
8181
}

src/api/python/pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ keywords = [
2929
dependencies = [
3030
"pandas",
3131
]
32-
version = "0.3.0-alpha.1"
32+
version = "0.3.0"
3333

3434
[project.urls]
3535
Homepage = "https://daphne-eu.eu/"

0 commit comments

Comments
 (0)