From 15dc5add22f539808e5c2beb3e90617e78cc0639 Mon Sep 17 00:00:00 2001 From: erxclau Date: Tue, 20 Feb 2024 20:48:42 -0500 Subject: [PATCH] Bump version --- README.md | 2 +- package.json | 2 +- src/sink-deploy.js | 2 +- src/sink-fetch.js | 2 +- src/sink-gdoc.js | 2 +- src/sink-gsheet.js | 2 +- src/sink-json.js | 2 +- src/sink-text.js | 2 +- src/sink.js | 2 +- 9 files changed, 9 insertions(+), 9 deletions(-) diff --git a/README.md b/README.md index 083b330..8cbe84a 100644 --- a/README.md +++ b/README.md @@ -8,7 +8,7 @@ A collection of helper scripts that are used across The Michigan Daily's project Run `pnpm install -D michigandaily/sink` to get the latest version. You can also use `yarn` or `npm`. -If you want to install a specifc version, add a version tag at the end of the library name (e.g., `michigandaily/sink#v2.11.1`). +If you want to install a specifc version, add a version tag at the end of the library name (e.g., `michigandaily/sink#v3.0.0`). ## Google Drive fetch diff --git a/package.json b/package.json index e672fd8..c6643a1 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "sink", - "version": "2.11.1", + "version": "3.0.0", "description": "Helper scripts for The Michigan Daily", "main": "./src/config.js", "bin": { diff --git a/src/sink-deploy.js b/src/sink-deploy.js index 4f60bc7..6daeb75 100644 --- a/src/sink-deploy.js +++ b/src/sink-deploy.js @@ -362,7 +362,7 @@ const main = async ([platform], opts) => { if (process.argv[1] === self) { program - .version("2.11.1") + .version("3.0.0") .addArgument( new Argument("", "platform to deploy to").choices(["aws"]) ) diff --git a/src/sink-fetch.js b/src/sink-fetch.js index cfabe97..a45e7f4 100644 --- a/src/sink-fetch.js +++ b/src/sink-fetch.js @@ -36,7 +36,7 @@ const main = async (opts) => { const self = fileURLToPath(import.meta.url); if (process.argv[1] === self) { program - .version("2.11.1") + .version("3.0.0") .option("-c, --config ", "path to config file") .parse(); diff --git a/src/sink-gdoc.js b/src/sink-gdoc.js index 2cc0183..d77c00b 100755 --- a/src/sink-gdoc.js +++ b/src/sink-gdoc.js @@ -147,7 +147,7 @@ const main = async (opts) => { const self = fileURLToPath(import.meta.url); if (process.argv[1] === self) { program - .version("2.11.1") + .version("3.0.0") .option("-c, --config ", "path to config file") .parse(); diff --git a/src/sink-gsheet.js b/src/sink-gsheet.js index e936aec..cd5ecfa 100755 --- a/src/sink-gsheet.js +++ b/src/sink-gsheet.js @@ -105,7 +105,7 @@ async function main(opts) { const self = fileURLToPath(import.meta.url); if (process.argv[1] === self) { program - .version("2.11.1") + .version("3.0.0") .option("-c, --config ", "path to config file") .parse(); diff --git a/src/sink-json.js b/src/sink-json.js index 54dd95b..63c78cb 100644 --- a/src/sink-json.js +++ b/src/sink-json.js @@ -47,7 +47,7 @@ const main = async (opts) => { const self = fileURLToPath(import.meta.url); if (process.argv[1] === self) { program - .version("2.11.1") + .version("3.0.0") .option("-c, --config ", "path to config file") .parse(); diff --git a/src/sink-text.js b/src/sink-text.js index ecc9975..b3efdfa 100644 --- a/src/sink-text.js +++ b/src/sink-text.js @@ -47,7 +47,7 @@ const main = async (opts) => { const self = fileURLToPath(import.meta.url); if (process.argv[1] === self) { program - .version("2.11.1") + .version("3.0.0") .option("-c, --config ", "path to config file") .parse(); diff --git a/src/sink.js b/src/sink.js index dcff736..f1575f0 100755 --- a/src/sink.js +++ b/src/sink.js @@ -3,7 +3,7 @@ import { program } from "commander"; program - .version("2.11.1") + .version("3.0.0") .name("sink") .description("Utility scripts") .command("gdoc", "fetch ArchieML Google Doc into JSON file")