From 1c5c894f95a61d68694de97d8742212d558772b0 Mon Sep 17 00:00:00 2001 From: sumibi-yakitori Date: Mon, 11 Mar 2024 11:17:55 +0900 Subject: [PATCH] Bump version to 0.8.0 --- README.md | 2 +- maskfile.md | 2 +- src/lib.rs | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 5182955..1bf186b 100644 --- a/README.md +++ b/README.md @@ -27,9 +27,9 @@ cargo add ldtk2 ```rust use std::{error::Error, path::Path, convert::TryInto}; +use ldtk2::Ldtk; fn main() -> Result<(), Box> { - use ldtk2::Ldtk; let map = Ldtk::from_path("tests/example.ldtk")?; // or diff --git a/maskfile.md b/maskfile.md index 532fe1a..3eb3bba 100644 --- a/maskfile.md +++ b/maskfile.md @@ -15,6 +15,6 @@ cargo publish ## update_schema ```sh -ldtk2_gen +ldtk_gen ``` diff --git a/src/lib.rs b/src/lib.rs index 6ecf01b..965bd80 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -9,7 +9,7 @@ //! //! # Supported LDtk file versions //! -//! `^1.1.3` +//! `^1.5` //! //! //! # Usage @@ -20,9 +20,9 @@ //! //! ```rust //! use std::{error::Error, path::Path, convert::TryInto}; +//! use ldtk2::Ldtk; //! //! fn main() -> Result<(), Box> { -//! use ldtk2::Ldtk; //! //! let map = Ldtk::from_path("tests/example.ldtk")?; //! // or