Skip to content

Commit

Permalink
axoasset 0.5.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
Gankra committed Aug 8, 2023
1 parent b3a7995 commit 7fe7163
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 2 deletions.
25 changes: 24 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,31 @@
# Changelog

### v0.5.0 - 2023-08-08

### 🎁 Features

- **Add a with_root argument to compression methods - [Gankra], [pr61]**

The compression methods take a path to a directory to tar/zip up. The
with_root argument specifies a root prefix of directories that the
archive's contents should be nested under. If None then the dir's contents
are flattened into the root of the archive.

e.g. to make a tar.gz that matches the npm package format (which
wants the tarball to contain a dir named "package"), you can
compress: `"path/to/contents/", Some("package")`

- **Add more copying APIs to LocalAsset - [Gankra], [pr62]**

LocalAsset now includes `copy_named`, `copy_dir`, and `copy_dir_named`.
All `copy` functions were change to return a `Utf8PathBuf` instead of a `PathBuf`.

[pr61]: https://github.com/axodotdev/axoasset/pull/61
[pr62]: https://github.com/axodotdev/axoasset/pull/62

## v0.4.0 - 2023-07-04

### 🎁 Features
### 🎁 Features

- **Don't use OpenSSL - [Gankra], [pr56]**

Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "axoasset"
description = ">o_o<"
version = "0.4.0"
version = "0.5.0"
edition = "2021"
license = "MIT OR Apache-2.0"
repository = "https://github.com/axodotdev/axoasset"
Expand Down

0 comments on commit 7fe7163

Please sign in to comment.