Skip to content

Commit

Permalink
Bump version to 13.32.0
Browse files Browse the repository at this point in the history
- Cookingcircle parser fix creds @adrianpasternak
- Add support for meljoulwan creds @Makanz
- Add support for pingo doce creds @ElDani-Red
- Remove (s) from servings/items. Add "s" if the count isn't one instead creds @Jabster28
  • Loading branch information
hhursev committed Apr 22, 2022
1 parent 69a112f commit 4e11b04
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion recipe_scrapers/__version__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "13.31.0"
__version__ = "13.32.0"
2 changes: 1 addition & 1 deletion tests/test_meljoulwan.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ def test_total_time(self):
self.assertEqual(25, self.harvester_class.total_time())

def test_yields(self):
self.assertEqual("4 serving(s)", self.harvester_class.yields())
self.assertEqual("4 servings", self.harvester_class.yields())

def test_image(self):
self.assertEqual(
Expand Down
2 changes: 1 addition & 1 deletion tests/test_pingodoce.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ def test_total_time(self):
self.assertEqual(60, self.harvester_class.total_time())

def test_yields(self):
self.assertEqual("4 serving(s)", self.harvester_class.yields())
self.assertEqual("4 servings", self.harvester_class.yields())

def test_ingredients(self):
self.assertEqual(
Expand Down

0 comments on commit 4e11b04

Please sign in to comment.