Skip to content

Commit

Permalink
Prepare next dev version v0.9.0-dev
Browse files Browse the repository at this point in the history
  • Loading branch information
sthiele committed Oct 20, 2023
1 parent 78b66ea commit 9f2f35b
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 9 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@

All notable changes to this project will be documented in this file.

## v0.9.0-dev

## v0.8.0

- Update to clingo-sys-0.7.2 (clingo 5.6.2)
Expand Down
10 changes: 4 additions & 6 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
[package]
name = "clingo"
version = "0.8.0"
publish = ["crates-io"]
version = "0.9.0-dev"
publish = false
# publish = ["crates-io"]
authors = ["sthiele <sthiele78@gmail.com>"]
edition = "2021"
description = "Rust idiomatic bindings to the clingo library"
Expand All @@ -10,10 +11,7 @@ license = "MIT"
repository = "https://github.com/potassco/clingo-rs"
documentation = "https://docs.rs/clingo"
readme = "README.md"
exclude = ["/.travis.yml"]

[badges]
travis-ci = { repository = "potassco/clingo-rs" }
exclude = ["/.github"]

[lib]
name = "clingo"
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ follows.

```toml
[dependencies]
clingo = { version = "0.8.0", features = ["static-linking"] }
clingo = { version = "0.9.0-dev", features = ["static-linking"] }
```

### Using `derive` macro
Expand All @@ -51,7 +51,7 @@ In your `Cargo.toml` add:

```toml
[dependencies]
clingo = { version = "0.8.0", features = ["derive"] }
clingo = { version = "0.9.0-dev", features = ["derive"] }
```

In your source write:
Expand Down
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#![doc(html_root_url = "https://docs.rs/clingo/0.8.0")]
#![doc(html_root_url = "https://docs.rs/clingo/0.9.0-dev")]
#![doc = include_str!("../README.md")]
#![allow(non_upper_case_globals)]
#![allow(clippy::try_err)]
Expand Down

0 comments on commit 9f2f35b

Please sign in to comment.