Skip to content

Commit

Permalink
Bump version to 0.8.0
Browse files Browse the repository at this point in the history
  • Loading branch information
sumibi-yakitori committed Mar 11, 2024
1 parent 1366b00 commit 1c5c894
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,9 +27,9 @@ cargo add ldtk2

```rust
use std::{error::Error, path::Path, convert::TryInto};
use ldtk2::Ldtk;

fn main() -> Result<(), Box<dyn Error>> {
use ldtk2::Ldtk;

let map = Ldtk::from_path("tests/example.ldtk")?;
// or
Expand Down
2 changes: 1 addition & 1 deletion maskfile.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,6 @@ cargo publish
## update_schema

```sh
ldtk2_gen
ldtk_gen
```

4 changes: 2 additions & 2 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
//!
//! # Supported LDtk file versions
//!
//! `^1.1.3`
//! `^1.5`
//!
//!
//! # Usage
Expand All @@ -20,9 +20,9 @@
//!
//! ```rust
//! use std::{error::Error, path::Path, convert::TryInto};
//! use ldtk2::Ldtk;
//!
//! fn main() -> Result<(), Box<dyn Error>> {
//! use ldtk2::Ldtk;
//!
//! let map = Ldtk::from_path("tests/example.ldtk")?;
//! // or
Expand Down

0 comments on commit 1c5c894

Please sign in to comment.