Skip to content

Commit

Permalink
Bump version to 1.0.3
Browse files Browse the repository at this point in the history
  • Loading branch information
pdroll committed Mar 5, 2024
1 parent 67013e3 commit b861afe
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 7 deletions.
5 changes: 2 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,7 @@ There are two commands available: `pick-a-card` and `deal-a-hand`
Usage: card-dealer [options] [command]

Options:
-p, --perfect-shuffle Should all randomness be removed when shuffling the deck? (default:
false)
-p, --perfect-shuffle Should all randomness be removed when shuffling the deck? (default:false)
-t, --shuffle-times <times> How many times should we shuffle the deck? (default: 7)
--cut [Y/n] Do you want to cut the deck after shuffling?
-h, --help display help for command
Expand All @@ -42,7 +41,7 @@ Usage: card-dealer pick-a-card [options]
Pick a random card or cards from a deck

Options:
-d, --deck <deck-type> What type of deck should we use (choices: "standard", "euchre", "canasta", "pinochle", default: "standard")
-d, --deck <deck-type> What type of deck should we use (choices: "standard", "double", "euchre", "canasta", "pinochle", default: "standard")
-c, --count <number> How many cards should be chosen? (default: 1)
--top Should the card be pulled from the top of the deck, rather than at a random point in the deck? (default: false)
-h, --help display help for command
Expand Down
Binary file modified deal-a-hand.gif
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "card-dealer-cli",
"version": "1.0.2",
"version": "1.0.3",
"description": "CLI utility for interacting with a deck of cards: pick a random card or deal a hand for a card game",
"keywords": [
"cards",
Expand Down
Binary file modified pick-a-card.gif
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion src/cli.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import type { DealAHandOpts, GlobalOpts, PickACardOpts } from './commands/types'
import { gameTypes } from './commands/types'
import { deckTypeNames } from './lib/deck'

const VERSION = '1.0.2' as const
const VERSION = '1.0.3' as const

const pickACard = new Command('pick-a-card')
.description('Pick a random card or cards from a deck')
Expand Down

0 comments on commit b861afe

Please sign in to comment.