Skip to content

Commit

Permalink
Finish 0.0.7
Browse files Browse the repository at this point in the history
  • Loading branch information
sunsided committed May 27, 2023
1 parent 8587f09 commit 2d11791
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 6 deletions.
3 changes: 2 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
All notable changes to this project will be documented in this file.
This project uses [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## Unreleased
## [0.0.7] - 2023-05-27

### Added

Expand Down Expand Up @@ -96,6 +96,7 @@ This project uses [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

- 🎉 Initial release.

[0.0.7]: https://github.com/sunsided/pddl-rs/releases/tag/0.0.7
[0.0.6]: https://github.com/sunsided/pddl-rs/releases/tag/0.0.6
[0.0.5]: https://github.com/sunsided/pddl-rs/releases/tag/0.0.5
[0.0.4]: https://github.com/sunsided/pddl-rs/releases/tag/0.0.4
Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "pddl"
version = "0.0.7-unstable"
version = "0.0.7"
description ="A PDDL 3.1 parser"
license = "EUPL-1.2"
documentation = "https://docs.rs/pddl"
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,9 +35,9 @@ use pddl::{Problem, Parser};
pub const BRIEFCASE_WORLD_PROBLEM: &'static str = r#"
(define (problem get-paid)
(:domain briefcase-world)
(:init (place home) (place office)
(object p) (object d) (object b)
(at B home) (at P home) (at D home) (in P))
(:init (place home) (place office) ; place types
(object p) (object d) (object b) ; object types
(at B home) (at P home) (at D home) (in P)) ; setup
(:goal (and (at B office) (at D office) (at P home)))
)
"#;
Expand Down
6 changes: 5 additions & 1 deletion tests/briefcase_world.rs
Original file line number Diff line number Diff line change
Expand Up @@ -43,8 +43,12 @@ pub const BRIEFCASE_WORLD: &'static str = r#"
pub const BRIEFCASE_WORLD_PROBLEM: &'static str = r#"
(define (problem get-paid)
(:domain briefcase-world)
(:init (place home) (place office)
(:init
; types: locations
(place home) (place office)
; types: objects
(object p) (object d) (object b)
; setup
(at B home) (at P home) (at D home) (in P))
(:goal (and (at B office) (at D office) (at P home)))
)
Expand Down

0 comments on commit 2d11791

Please sign in to comment.