Skip to content

Releases: blakepotvin/playingcards.py

v1.1.0

09 Mar 01:49
Compare
Choose a tag to compare

6 months ago when I first released this package, I've made very dumb design decisions. This release fixes those dumb decisions and adds a new class CardCollection. One of the flaws in the previous version was generating a card every time the draw_card() function instead of pre-generating cards on instantiation of the deck and drawing from there. Deck is now a child of the new CardCollection class which is made for any type of collection of cards, i.e. hand, table, bank.

Full Changelog: v1.0.1...v1.1.0

v1.0.1

27 Aug 01:17
Compare
Choose a tag to compare

Patched an issue where draw_card() didn't have the correct parameters for a user to input their own card values/suit.

What's Changed

Full Changelog: v1.0.0...v1.0.1

v1.0.0

27 Aug 00:24
91e7eda
Compare
Choose a tag to compare

First release and distribution of the playingcards.py package for python.