From 0c41808e8b66a8e6a7e4cffd61728a028ce117b7 Mon Sep 17 00:00:00 2001 From: aiekick Date: Thu, 10 Aug 2023 22:17:02 +0200 Subject: [PATCH] [VER] : Version 0.1.8 --- Cargo.toml | 2 +- LICENSE | 2 +- README.md | 3 --- 3 files changed, 2 insertions(+), 5 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index f98a205..d042bfd 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "vox_writer" -version = "0.1.7" +version = "0.1.8" edition = "2021" description = "A simple writer module for MagicaVoxel file format" license = "MIT" diff --git a/LICENSE b/LICENSE index 14334c3..d2b3bad 100644 --- a/LICENSE +++ b/LICENSE @@ -1,6 +1,6 @@ MIT License -Copyright (c) 2021 Stephane Cuillerdier (aka Aiekick) +Copyright (c) 2021-2023 Stephane Cuillerdier (aka Aiekick) Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/README.md b/README.md index 5732deb..474a063 100644 --- a/README.md +++ b/README.md @@ -5,8 +5,6 @@ my conversion to Rust of my original c++ [MagicaVoxel File Writer](https://githu ### Sample code 1 : ```rust -mod vox_writer; - fn main() { let mut vox = vox_writer::VoxWriter::create_empty(); @@ -32,7 +30,6 @@ you can generate that (previewed in [Magicavoxel](https://ephtracy.github.io/)) ### Sample code 2 : ```rust -mod vox_writer; fn main() { let mut vox = vox_writer::VoxWriter::create_empty(); const SIZE:i32 = 1000;