Skip to content

Commit

Permalink
0.1.18 (#76)
Browse files Browse the repository at this point in the history
* __dirname -> import.meta.dirname

* 0.1.18
  • Loading branch information
jakelazaroff authored Jan 29, 2025
1 parent 7f1a7b2 commit a23584b
Show file tree
Hide file tree
Showing 9 changed files with 13 additions and 15 deletions.
2 changes: 1 addition & 1 deletion javascript/forevervm/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "forevervm",
"description": "CLI for foreverVM",
"version": "0.1.17",
"version": "0.1.18",
"author": "Jamsocket",
"type": "module",
"bin": {
Expand Down
4 changes: 2 additions & 2 deletions javascript/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion javascript/sdk/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@forevervm/sdk",
"version": "0.1.17",
"version": "0.1.18",
"description": "Developer SDK for foreverVM",
"type": "module",
"main": "./dist/index.cjs",
Expand Down
2 changes: 1 addition & 1 deletion python/forevervm/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "hatchling.build"

[project]
name = "forevervm"
version = "0.1.17"
version = "0.1.18"

[project.scripts]
forevervm = "forevervm:run_binary"
2 changes: 1 addition & 1 deletion python/sdk/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "hatchling.build"

[project]
name = "forevervm-sdk"
version = "0.1.17"
version = "0.1.18"
dependencies = [
"httpx>=0.28.1",
"httpx-ws>=0.7.1",
Expand Down
4 changes: 2 additions & 2 deletions rust/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion rust/forevervm-sdk/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "forevervm-sdk"
version = "0.1.17"
version = "0.1.18"
edition = "2021"
license = "MIT OR Apache-2.0"
homepage = "https://forevervm.com/"
Expand Down
2 changes: 1 addition & 1 deletion rust/forevervm/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "forevervm"
version = "0.1.17"
version = "0.1.18"
edition = "2021"
license = "MIT OR Apache-2.0"
homepage = "https://forevervm.com/"
Expand Down
8 changes: 3 additions & 5 deletions scripts/bump-versions.ts
Original file line number Diff line number Diff line change
Expand Up @@ -73,8 +73,7 @@ class NpmPackageRepo implements PackageRepo {
repoName = 'npm'

gatherPackages(): Package[] {
const scriptDir = __dirname
const jsDir = path.join(scriptDir, '..', 'javascript')
const jsDir = path.join(import.meta.dirname, '..', 'javascript')
const packages: Package[] = []

const crawlDir = (dir: string) => {
Expand Down Expand Up @@ -141,8 +140,7 @@ class PythonPackageRepo implements PackageRepo {
repoName = 'python'

gatherPackages(): Package[] {
const scriptDir = __dirname
const pythonDir = path.join(scriptDir, '..', 'python')
const pythonDir = path.join(import.meta.dirname, '..', 'python')
const packages: Package[] = []

const crawlDir = (dir: string) => {
Expand Down Expand Up @@ -207,7 +205,7 @@ class CargoPackageRepo implements PackageRepo {
repoName = 'cargo'

gatherPackages(): Package[] {
const cargoDir = path.join(__dirname, '..', 'rust')
const cargoDir = path.join(import.meta.dirname, '..', 'rust')
const packages: Package[] = []

const crawlDir = (dir: string) => {
Expand Down

0 comments on commit a23584b

Please sign in to comment.