From 38a71944be1e0a16435d547262b239f32107bfd0 Mon Sep 17 00:00:00 2001 From: "Nate Hopkins (hopsoft)" Date: Fri, 1 Sep 2023 08:12:30 -0600 Subject: [PATCH] Version bump --- README.md | 7 +++---- lib/turbo_boost/commands/version.rb | 2 +- package.json | 3 ++- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index ee7f194f..d1b53f04 100644 --- a/README.md +++ b/README.md @@ -558,12 +558,11 @@ fly deploy 1. Run `yarn` and `bundle` to pick up the latest 1. Bump version number at `lib/turbo_boost-streams/version.rb`. Pre-release versions use `.preN` -1. Run `rake build` and `yarn build` +1. Bump version number at `package.json` _(make sure it matches)_. Pre-release versions use `-preN` +1. Run `yarn build` and `rake build` 1. Commit and push changes to GitHub 1. Run `rake release` -1. Run `yarn publish --no-git-tag-version --access public` -1. Yarn will prompt you for the new version. Pre-release versions use `-preN` -1. Commit and push changes to GitHub +1. Run `yarn publish --no-git-tag-version --access public --new-version X.X.X` _(use same version number)_ 1. Create a new release on GitHub ([here](https://github.com/hopsoft/turbo_boost-streams/releases)) and generate the changelog for the stable release for it ## About TurboBoost diff --git a/lib/turbo_boost/commands/version.rb b/lib/turbo_boost/commands/version.rb index 57927696..2c22d0b6 100644 --- a/lib/turbo_boost/commands/version.rb +++ b/lib/turbo_boost/commands/version.rb @@ -2,6 +2,6 @@ module TurboBoost module Commands - VERSION = "0.0.13" + VERSION = "0.0.14" end end diff --git a/package.json b/package.json index e68413d9..b779d8f8 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@turbo-boost/commands", - "version": "0.0.13", + "version": "0.0.14", "description": "Commands to help you build robust reactive applications with Rails & Hotwire.", "keywords": [ "hotwire", @@ -39,6 +39,7 @@ }, "scripts": { "build": "bin/standardize && node bin/build.mjs", + "build:all": "bin/standardize && node bin/build.mjs && rake build", "build:watch": "yarn build --watch" } }