Skip to content

Commit 5d7c541

Browse files
committed
upgrade (Breaking-Change): Updated WhenMade enums for Year 2025
Due to Un-notified change in Etsy API for the new year, WhenMade options were modified as follows: 1. 2000_2004 -> 2000_2005 2. before_2005 -> before_2006 3. 2005_2009 -> 2006_2009 4. 2020_2024 -> 2020_2025
1 parent 369a213 commit 5d7c541

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

etsy_python/v3/enums/Listing.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,11 @@ class WhoMade(Enum):
99

1010
class WhenMade(Enum):
1111
MADE_TO_ORDER = "made_to_order"
12-
TWENTY_TWENTIES = "2020_2024"
12+
TWENTY_TWENTIES = "2020_2025"
1313
TWENTY_TENS = "2010_2019"
14-
TWENTY_OH_FIVE_TO_NINE = "2005_2009"
15-
BEFORE_2005 = "before_2005"
16-
TWO_THOUSAND_TO_TWO = "2000_2004"
14+
TWENTY_OH_SIX_TO_NINE = "2006_2009"
15+
BEFORE_2006 = "before_2006"
16+
TWO_THOUSAND_TO_FIVE = "2000_2005"
1717
NINETEEN_NINETIES = "1990s"
1818
NINETEEN_EIGHTIES = "1980s"
1919
NINETEEN_SEVENTIES = "1970s"

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
with codecs.open(os.path.join(here, "README.md"), encoding="utf-8") as fh:
88
long_description = "\n" + fh.read()
99

10-
VERSION = "1.0.17"
10+
VERSION = "1.0.18"
1111
DESCRIPTION = "Etsy API Client Library for Python"
1212

1313
# Setting up

0 commit comments

Comments
 (0)