Skip to content

Commit

Permalink
Bump bws version to 1.0.0 (#1066)
Browse files Browse the repository at this point in the history
## Type of change
    - [ ] Bug fix
    - [ ] New feature development
- [ ] Tech debt (refactoring, code cleanup, dependency upgrades, etc)
    - [ ] Build/deploy pipeline (DevOps)
    - [X] Other

    ## Objective
    Automated bws version bump to 1.0.0
  • Loading branch information
bitwarden-devops-bot authored Sep 18, 2024
1 parent f89ffb0 commit 220cbcb
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion 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 crates/bws/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "bws"
version = "0.5.0"
version = "1.0.0"
description = """
Bitwarden Secrets Manager CLI
"""
Expand Down
2 changes: 1 addition & 1 deletion crates/bws/scripts/install.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ param (

$ErrorActionPreference = "Stop"

$defaultBwsVersion = "0.5.0"
$defaultBwsVersion = "1.0.0"
$bwsVersion = if ($env:bwsVersion) { $env:bwsVersion } else { $defaultBwsVersion }
$installDir = [Environment]::GetFolderPath([Environment+SpecialFolder]::LocalApplicationData) | Join-Path -ChildPath "Programs" | Join-Path -ChildPath "Bitwarden"

Expand Down
2 changes: 1 addition & 1 deletion crates/bws/scripts/install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
# An installer for the bws command line utility. #
##################################################

DEFAULT_BWS_VERSION="0.5.0"
DEFAULT_BWS_VERSION="1.0.0"
BWS_VERSION="${BWS_VERSION:-$DEFAULT_BWS_VERSION}"

main() {
Expand Down

0 comments on commit 220cbcb

Please sign in to comment.