Skip to content

Commit

Permalink
Bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
erxclau committed Feb 21, 2024
1 parent f51ccc2 commit 15dc5ad
Show file tree
Hide file tree
Showing 9 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -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": {
Expand Down
2 changes: 1 addition & 1 deletion src/sink-deploy.js
Original file line number Diff line number Diff line change
Expand Up @@ -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>", "platform to deploy to").choices(["aws"])
)
Expand Down
2 changes: 1 addition & 1 deletion src/sink-fetch.js
Original file line number Diff line number Diff line change
Expand Up @@ -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>", "path to config file")
.parse();

Expand Down
2 changes: 1 addition & 1 deletion src/sink-gdoc.js
Original file line number Diff line number Diff line change
Expand Up @@ -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>", "path to config file")
.parse();

Expand Down
2 changes: 1 addition & 1 deletion src/sink-gsheet.js
Original file line number Diff line number Diff line change
Expand Up @@ -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>", "path to config file")
.parse();

Expand Down
2 changes: 1 addition & 1 deletion src/sink-json.js
Original file line number Diff line number Diff line change
Expand Up @@ -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>", "path to config file")
.parse();

Expand Down
2 changes: 1 addition & 1 deletion src/sink-text.js
Original file line number Diff line number Diff line change
Expand Up @@ -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>", "path to config file")
.parse();

Expand Down
2 changes: 1 addition & 1 deletion src/sink.js
Original file line number Diff line number Diff line change
Expand Up @@ -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")
Expand Down

0 comments on commit 15dc5ad

Please sign in to comment.