Skip to content

Commit

Permalink
pydicts-0.8.0
Browse files Browse the repository at this point in the history
  • Loading branch information
turulomio committed Nov 26, 2023
1 parent c9bb63b commit 373cb94
Show file tree
Hide file tree
Showing 7 changed files with 39 additions and 10 deletions.
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -292,6 +292,10 @@ poetry run pytest

## CHANGELOG

## 0.8.0 (2023-11-26)
- Migrating casts and datetime_functions to pydicts.casts. Utils to make casting easy
- Create lol (List of lists) module

### 0.7.0 (2023-11-04)
- Improved documentation
- Removed duplicated lod_min and lod_max methods
Expand Down
7 changes: 6 additions & 1 deletion pydicts.epj
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"header": {
"comment": "eric project file for project pydicts",
"copyright": "Copyright (C) 2023 , ",
"saved": "2023-05-03, 19:42:36"
"saved": "2023-11-26, 17:52:26"
},
"project": {
"AUTHOR": "",
Expand Down Expand Up @@ -74,17 +74,22 @@
"RESOURCES": [],
"SOURCES": [
"pydicts/__init__.py",
"pydicts/casts.py",
"pydicts/classes.py",
"pydicts/devscripts.py",
"pydicts/lod.py",
"pydicts/lod_xyv.py",
"pydicts/lod_ymv.py",
"pydicts/lol.py",
"pydicts/pylatex.py",
"pydicts/tests/__init__.py",
"pydicts/tests/test_casts.py",
"pydicts/tests/test_lod.py",
"pydicts/tests/test_lod_ymv.py",
"pydicts/tests/test_lol.py",
"pydicts/tests/test_pylatex.py"
],
"SOURCESDIR": "",
"SPELLEXCLUDES": "",
"SPELLLANGUAGE": "en_US",
"SPELLWORDS": "",
Expand Down
4 changes: 2 additions & 2 deletions pydicts/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
from datetime import datetime
__version__="0.7.0"
__versiondatetime__= datetime(2023, 11, 4, 10, 0)
__version__="0.8.0"
__versiondatetime__= datetime(2023, 11, 26, 17, 53)
__versiondate__=__versiondatetime__.date()
18 changes: 15 additions & 3 deletions pydicts/locale/es.po
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: TooManyFiles\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2023-04-19 19:15+0200\n"
"POT-Creation-Date: 2023-11-26 17:54+0100\n"
"PO-Revision-Date: 2020-04-03 08:54+0200\n"
"Last-Translator: trabajo <[email protected]>\n"
"Language-Team: Spanish <[email protected]>\n"
Expand All @@ -19,8 +19,20 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Lokalize 19.12.3\n"

msgid "You pressed 'Ctrl+C', exiting..."
msgstr "Has pulsado 'Ctrl+C', saliendo..."
msgid "Datetime parameter should be aware"
msgstr ""

msgid "Datetime parameter should be naive"
msgstr ""

msgid "I can't convert this format '{}'. I only support this {}"
msgstr ""

msgid "I can't remove positions from a None list"
msgstr ""

#~ msgid "You pressed 'Ctrl+C', exiting..."
#~ msgstr "Has pulsado 'Ctrl+C', saliendo..."

#~ msgid "Developed by Mariano Muñoz 2022-{}"
#~ msgstr "Desarrollado por Mariano Muñoz 2022-{}"
Expand Down
Binary file modified pydicts/locale/es/LC_MESSAGES/pydicts.mo
Binary file not shown.
14 changes: 11 additions & 3 deletions pydicts/locale/pydicts.pot
Original file line number Diff line number Diff line change
Expand Up @@ -8,15 +8,23 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2023-04-19 19:15+0200\n"
"POT-Creation-Date: 2023-11-26 17:54+0100\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <[email protected]>\n"
"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Type: text/plain; charset=CHARSET\n"
"Content-Transfer-Encoding: 8bit\n"

msgid "You pressed 'Ctrl+C', exiting..."
msgid "Datetime parameter should be aware"
msgstr ""

msgid "Datetime parameter should be naive"
msgstr ""

msgid "I can't convert this format '{}'. I only support this {}"
msgstr ""

msgid "I can't remove positions from a None list"
msgstr ""
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "pydicts"
version = "0.7.0"
version = "0.8.0"
description = "Module to use dictionaries in various situations"
authors = ["turulomio <[email protected]>"]
license = "GPL-3.0"
Expand Down

0 comments on commit 373cb94

Please sign in to comment.