Skip to content

Commit 2425888

Browse files
committed
chore: release 0.0.4
1 parent e808889 commit 2425888

File tree

10 files changed

+12
-12
lines changed

10 files changed

+12
-12
lines changed

rust/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ members = ["vbare-gen", "vbare-compiler", "vbare", "examples/basic"]
33
resolver = "2"
44

55
[workspace.package]
6-
version = "0.0.3"
6+
version = "0.0.4"
77
edition = "2021"
88
authors = ["Rivet Gaming, Inc. <[email protected]>"]
99
license = "MIT"

rust/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,11 +16,11 @@
1616
anyhow = "1"
1717
serde = { version = "1", features = ["derive"] }
1818
serde_bare = "0.5"
19-
vbare = "0.0.3"
19+
vbare = "0.0.4"
2020

2121
[build-dependencies]
2222
anyhow = "1"
23-
vbare-compiler = "0.0.3"
23+
vbare-compiler = "0.0.4"
2424
```
2525

2626
**Step 2: In `build.rs`, process your `.bare` schema files directory and generate the modules:**

rust/examples/basic/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "basic"
3-
version = "0.0.3"
3+
version = "0.0.4"
44
edition = "2021"
55
description = "Basic example for VBARE (Versioned Binary Application Record Encoding), an extension to BARE with versioned schema evolution"
66
license = "MIT"

rust/vbare-compiler/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ license.workspace = true
77
description = "Compile-time code generation for VBARE (Versioned Binary Application Record Encoding), an extension to BARE with versioned schema evolution"
88

99
[dependencies]
10-
vbare-gen = { path = "../vbare-gen", version = "0.0.3" }
10+
vbare-gen = { path = "../vbare-gen", version = "0.0.4" }
1111
indoc.workspace = true
1212
prettyplease.workspace = true
1313
syn.workspace = true

typescript/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,10 @@
1414
```json
1515
{
1616
"dependencies": {
17-
"vbare": "0.0.3"
17+
"vbare": "0.0.4"
1818
},
1919
"devDependencies": {
20-
"@vbare/compiler": "0.0.3"
20+
"@vbare/compiler": "0.0.4"
2121
}
2222
}
2323
```

typescript/examples/basic/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@vbare/example-basic",
33
"private": true,
4-
"version": "0.0.3",
4+
"version": "0.0.4",
55
"description": "Basic example: compile fixtures and migrate between versions",
66
"type": "module",
77
"scripts": {

typescript/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "vbare-workspace",
3-
"version": "0.0.3",
3+
"version": "0.0.4",
44
"license": "MIT",
55
"author": "Rivet Gaming, Inc. <[email protected]>",
66
"private": true,

typescript/vbare-compiler/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@vbare/compiler",
3-
"version": "0.0.3",
3+
"version": "0.0.4",
44
"description": "Bare minimum script to compile a bare schema",
55
"main": "./dist/index.js",
66
"module": "./dist/index.mjs",

typescript/vbare-compiler/src/cli.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ const program = new Command();
1010
program
1111
.name("vbare-compiler")
1212
.description("Compile BARE schemas (single file or an entire folder) to TypeScript")
13-
.version("0.0.3");
13+
.version("0.0.4");
1414

1515
async function isDirectory(p: string): Promise<boolean> {
1616
try {

typescript/vbare/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "vbare",
3-
"version": "0.0.3",
3+
"version": "0.0.4",
44
"description": "Versioned data handling for BARE schemas",
55
"main": "./dist/index.js",
66
"module": "./dist/index.mjs",

0 commit comments

Comments
 (0)