Skip to content

Commit

Permalink
Bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
erxclau committed Apr 9, 2024
1 parent 68d1383 commit e3a491d
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 @@ -6,7 +6,7 @@ A collection of helper scripts that are used across The Michigan Daily's project

## Installation

Run `pnpm install -D michigandaily/sink#v3.0.0` to get a pinned version. You can also use `yarn` or `npm`.
Run `pnpm install -D michigandaily/sink#v3.0.1` to get a pinned version. You can also use `yarn` or `npm`.

If you want to install the latest version, omit the version tag at the end of the library name (e.g., `michigandaily/sink`). This is not recommended in case of breaking changes.

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": "3.0.0",
"version": "3.0.1",
"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("3.0.0")
.version("3.0.1")
.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("3.0.0")
.version("3.0.1")
.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("3.0.0")
.version("3.0.1")
.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("3.0.0")
.version("3.0.1")
.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("3.0.0")
.version("3.0.1")
.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("3.0.0")
.version("3.0.1")
.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("3.0.0")
.version("3.0.1")
.name("sink")
.description("Utility scripts")
.command("gdoc", "fetch ArchieML Google Doc into JSON file")
Expand Down

0 comments on commit e3a491d

Please sign in to comment.