Skip to content

Commit

Permalink
Update versions
Browse files Browse the repository at this point in the history
  • Loading branch information
thomaskrause committed Aug 9, 2021
1 parent da8e471 commit 275efd2
Show file tree
Hide file tree
Showing 9 changed files with 17 additions and 15 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.32.0] - 2021-08-09

### Added

- C-API now implements exporting corpora
Expand Down
6 changes: 3 additions & 3 deletions CITATION.cff
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
cff-version: 0.31.2
cff-version: 0.32.0
message: If you use this software, please cite it as below.
authors:
- family-names: Krause
given-names: Thomas
orcid: https://orcid.org/0000-0003-3731-2422
affiliation: Humboldt-Universität zu Berlin
title: graphANNIS
version: 0.31.2
date-released: 2021-04-01
version: 0.32.0
date-released: 2021-08-09
doi: 10.5281/zenodo.2598164
references:
- type: thesis
Expand Down
4 changes: 2 additions & 2 deletions capi/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,14 +6,14 @@ license = "Apache-2.0"
name = "graphannis-capi"
readme = "crate-info.md"
repository = "https://github.com/korpling/graphANNIS"
version = "0.31.2"
version = "0.32.0"

[lib]
crate-type = ["staticlib", "cdylib"]

[dependencies]
anyhow = "1"
graphannis = {path = "../graphannis/", version = "^0.31"}
graphannis = {path = "../graphannis/", version = "^0.32"}
libc = "0.2"
log = "0.4"
simplelog = {version = "0.7"}
4 changes: 2 additions & 2 deletions cli/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "graphannis-cli"
version = "0.31.2"
version = "0.32.0"
authors = ["Thomas Krause <[email protected]>"]
license = "Apache-2.0"
description = "This is a command-line interface to the new backend implementation of the ANNIS linguistic search and visualization system."
Expand All @@ -10,7 +10,7 @@ autobins = true
edition = "2018"

[dependencies]
graphannis= {path = "../graphannis/", version= "^0.31"}
graphannis= {path = "../graphannis/", version= "^0.32"}
rustyline = "6.1"
rustyline-derive = "0.3"
simplelog = "0.7"
Expand Down
2 changes: 1 addition & 1 deletion core/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
authors = ["Thomas Krause <[email protected]>"]
name = "graphannis-core"
version = "0.31.2"
version = "0.32.0"

description = "This crate supports graph representation and generic query-functionality."
edition = "2018"
Expand Down
2 changes: 1 addition & 1 deletion docs/src/embed-rust.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

Add a dependency to graphANNIS in you `Cargo.toml` file:
```toml
graphannis = "0.31.2"
graphannis = "0.32.0"
```

## API documentation
Expand Down
2 changes: 1 addition & 1 deletion examples/tutorial/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "graphannis-tutorial"
version = "0.31.2"
version = "0.32.0"
authors = ["Thomas Krause <[email protected]>"]
edition = "2018"
publish = false
Expand Down
4 changes: 2 additions & 2 deletions graphannis/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ license = "Apache-2.0"
name = "graphannis"
readme = "crate-info.md"
repository = "https://github.com/korpling/graphANNIS"
version = "0.31.2"
version = "0.32.0"

[lib]
crate-type = ["lib"]
Expand All @@ -22,7 +22,7 @@ regex = "1"
boolean_expression = "0.3"
csv = "1"
fs2 = "0.4"
graphannis-core = {path = "../core/", version = "^0.31"}
graphannis-core = {path = "../core/", version = "^0.32"}
graphannis-malloc_size_of = "1.0"
graphannis-malloc_size_of_derive = "2.0"
itertools = "0.9"
Expand Down
6 changes: 3 additions & 3 deletions webservice/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ license = "Apache-2.0"
name = "graphannis-webservice"
readme = "crate-info.md"
repository = "https://github.com/korpling/graphANNIS"
version = "0.31.2"
version = "0.32.0"

[dependencies]
actix-cors = "0.3"
Expand All @@ -22,8 +22,8 @@ config = "0.10"
diesel = { version = "1.4", features = ["sqlite", "r2d2"] }
diesel_migrations = "1.4"
futures = "0.3"
graphannis = { path = "../graphannis/", version = "^0.31" }
graphannis-core = { path = "../core/", version = "^0.31" }
graphannis = { path = "../graphannis/", version = "^0.32"}
graphannis-core = { path = "../core/", version = "^0.32"}
jsonwebtoken = "7.2"
libsqlite3-sys = { version = "0.22", features = ["bundled"] }
log = "0.4"
Expand Down

0 comments on commit 275efd2

Please sign in to comment.