Skip to content

Commit

Permalink
Merge pull request #123 from spine-tools/0.8-dev
Browse files Browse the repository at this point in the history
merge 0.8 dev to master
  • Loading branch information
jkiviluo authored May 3, 2024
2 parents de75ba1 + c58e019 commit c7c98c5
Show file tree
Hide file tree
Showing 15 changed files with 4,363 additions and 490 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ jobs:
- uses: julia-actions/julia-runtest@latest
- uses: julia-actions/julia-processcoverage@v1
if: matrix.version == '1' && matrix.os == 'ubuntu-latest'
- uses: codecov/codecov-action@v1
- uses: codecov/codecov-action@v4
with:
file: lcov.info
Documenter:
Expand Down
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -18,4 +18,5 @@ test/Manifest.toml
Manifest.toml
test/test_out.sqlite
examples/tutorial_spine_database/quick_start.sqlite
examples/tutorial_spineopt_database/example_spineopt_database.sqlite
.vscode/settings.json
2 changes: 1 addition & 1 deletion Project.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name = "SpineInterface"
uuid = "0cda1612-498a-11e9-3c92-77fa82595a4f"
authors = ["Spine Project consortium <[email protected]>"]
version = "0.13.5"
version = "0.14.1"

[deps]
DataStructures = "864edb3b-99cc-5e75-8d2d-829cb0a9cfe8"
Expand Down
6 changes: 4 additions & 2 deletions examples/tutorial_spine_database/tutorial_spine_database.jl
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,10 @@ using SpineInterface
# initialize database
# either use an existing database
url = "sqlite:///$(@__DIR__)/quick_start_from_Spine_Toolbox.sqlite"
# or create a new database (overwrites the previous line)
url = "sqlite:///$(@__DIR__)/quick_start.sqlite"
# or create a new database (predates the previous line)
path = joinpath(@__DIR__, "quick_start.sqlite")
rm(path; force=true)
url = "sqlite:///$path"

commit_message = "initial commit message for the new database with the objects actor and film"
import_data(url, commit_message; object_classes=["actor", "film"])
Expand Down
Loading

0 comments on commit c7c98c5

Please sign in to comment.