Skip to content

Commit

Permalink
Bump versions
Browse files Browse the repository at this point in the history
  • Loading branch information
RedstoneWizard08 committed Mar 21, 2023
1 parent 66ed457 commit 56d86cc
Show file tree
Hide file tree
Showing 27 changed files with 802 additions and 800 deletions.
62 changes: 31 additions & 31 deletions .eslintignore
Original file line number Diff line number Diff line change
@@ -1,31 +1,31 @@
# Build outputs
target
build
dist
out

# Dependencies
node_modules

# Why would I lint these?
*.md
LICENSE

# Image files
*.png
*.svg
*.gif
*.jpg
*.jpeg
*.jfif

# Lock files
*.lock
pnpm-lock.yaml
package-lock.json

# Git
.git

# Rust
*.rs
# Build outputs
target
build
dist
out

# Dependencies
node_modules

# Why would I lint these?
*.md
LICENSE

# Image files
*.png
*.svg
*.gif
*.jpg
*.jpeg
*.jfif

# Lock files
*.lock
pnpm-lock.yaml
package-lock.json

# Git
.git

# Rust
*.rs
60 changes: 30 additions & 30 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,30 +1,30 @@
# Logs
logs
*.log
npm-debug.log*
yarn-debug.log*
yarn-error.log*
pnpm-debug.log*
lerna-debug.log*

node_modules
dist
dist-ssr
*.local

testing

# Editor directories and files
.vscode/*
!.vscode/extensions.json
.idea
.DS_Store
*.suo
*.ntvs*
*.njsproj
*.sln
*.sw?

# Tauri generated files
target
wormhole.AppDir
# Logs
logs
*.log
npm-debug.log*
yarn-debug.log*
yarn-error.log*
pnpm-debug.log*
lerna-debug.log*

node_modules
dist
dist-ssr
*.local

testing

# Editor directories and files
.vscode/*
!.vscode/extensions.json
.idea
.DS_Store
*.suo
*.ntvs*
*.njsproj
*.sln
*.sw?

# Tauri generated files
target
wormhole.AppDir
62 changes: 31 additions & 31 deletions .stylelintignore
Original file line number Diff line number Diff line change
@@ -1,31 +1,31 @@
# Build outputs
target
build
dist
out

# Dependencies
node_modules

# Why would I lint these?
*.md
LICENSE

# Image files
*.png
*.svg
*.gif
*.jpg
*.jpeg
*.jfif

# Lock files
*.lock
pnpm-lock.yaml
package-lock.json

# Git
.git

# Rust
*.rs
# Build outputs
target
build
dist
out

# Dependencies
node_modules

# Why would I lint these?
*.md
LICENSE

# Image files
*.png
*.svg
*.gif
*.jpg
*.jpeg
*.jfif

# Lock files
*.lock
pnpm-lock.yaml
package-lock.json

# Git
.git

# Rust
*.rs
6 changes: 3 additions & 3 deletions Cargo.lock

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

12 changes: 6 additions & 6 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[workspace]
members = [
"cli",
"common",
"gui"
]
[workspace]
members = [
"cli",
"common",
"gui"
]
26 changes: 13 additions & 13 deletions SECURITY.md
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
# Security Policy

## Supported Versions

| Version | Supported |
|---------|--------------------|
| < 1.0 | :white_check_mark: |

## Reporting a Vulnerability

To report a vulnerability, please head to the issues section
and create one describing the issue. We will try to fix it
as soon as possible. Thanks!
# Security Policy

## Supported Versions

| Version | Supported |
|---------|--------------------|
| < 1.0 | :white_check_mark: |

## Reporting a Vulnerability

To report a vulnerability, please head to the issues section
and create one describing the issue. We will try to fix it
as soon as possible. Thanks!
2 changes: 2 additions & 0 deletions bump.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
#!/usr/bin/env python3

import re
import argparse

Expand Down
4 changes: 2 additions & 2 deletions cli/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "wormhole-cli"
version = "0.3.1"
version = "0.4.0"
edition = "2021"
description = "The Wormhole CLI."
license = "MIT"
Expand All @@ -12,4 +12,4 @@ authors = ["RedstoneWizard08", "Rexicon226", "cheese3660", "Wormhole Contributor
[dependencies]
clap = { version = "4.1.8", features = ["derive", "env", "string", "debug"] }
tokio = { version = "1.26.0", features = ["full"] }
wormhole-common = { path = "../common", version = "0.3.1" }
wormhole-common = { path = "../common", version = "0.4.0" }
2 changes: 1 addition & 1 deletion cli/src/commands/mod.rs
Original file line number Diff line number Diff line change
@@ -1 +1 @@
pub mod mods;
pub mod mods;
2 changes: 1 addition & 1 deletion cli/src/commands/mods/mod.rs
Original file line number Diff line number Diff line change
@@ -1 +1 @@
pub mod install;
pub mod install;
2 changes: 1 addition & 1 deletion common/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "wormhole-common"
version = "0.3.1"
version = "0.4.0"
edition = "2021"
description = "Common code for the Wormhole mod manager project."
license = "MIT"
Expand Down
Loading

0 comments on commit 56d86cc

Please sign in to comment.