Skip to content

Commit 82d2266

Browse files
committed
Fix endian.ts export issue. Fix Makefile target 'publish_dry_run' to work with dirty work directory. Bump lib version to 0.0.6.
1 parent 6b23876 commit 82d2266

File tree

4 files changed

+5
-4
lines changed

4 files changed

+5
-4
lines changed

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "byte-transcoder"
3-
version = "0.0.5"
3+
version = "0.0.6"
44
edition = "2024"
55
rust-version = "1.85"
66
authors = ["Todd Everett Griffin <tgriffin115@gmail.com>"]

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,8 +42,8 @@ fix: ## auto-fixes (some) linter issues
4242
.PHONY: publish_dry_run
4343
publish_dry_run: ## dry run of publishing libraries to crates.io and JSR
4444
echo "\033[1;35m[Packaging Rust]\033[0m"
45-
cargo publish --dry-run
46-
cargo package --list
45+
cargo publish --dry-run --allow-dirty
46+
cargo package --list --allow-dirty
4747
echo "\033[1;35m[Packaging Typescript]\033[0m"
4848
deno publish --dry-run --allow-dirty
4949
echo "\033[1;35m[Finished Dry-Run Publish]\033[0m"

deno.jsonc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@todd/byte-transcoder",
3-
"version": "0.0.5",
3+
"version": "0.0.6",
44
"exports": {
55
".": "./src-ts/mod.ts"
66
},

src-ts/mod.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
11
export * from "./byte-reader.ts";
22
export * from "./byte-writer.ts";
3+
export * from "./endian.ts";

0 commit comments

Comments
 (0)