Accepting request 989026 from devel:languages:python
OBS-URL: https://build.opensuse.org/request/show/989026 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-tomlkit?expand=0&rev=8
This commit is contained in:
commit
834b3b8e41
@ -1,3 +1,51 @@
|
||||
-------------------------------------------------------------------
|
||||
Wed Jul 13 15:36:09 UTC 2022 - Ben Greiner <code@bnavigator.de>
|
||||
|
||||
- Update to version 0.11.1
|
||||
* Keep consistent line endings when changing files. (#201)
|
||||
* Make KeyAlreadyPresent and InvalidStringError subclasses of
|
||||
ParseError. (#202)
|
||||
* Remove empty table from OutOfOrderTableProxy when deleting
|
||||
items. (#204)
|
||||
* Raise errors when trying to access unsupported methods on
|
||||
OutOfOrderTableProxy. (#205)
|
||||
* Fix unwrap() for String values to remove the quotes. (#199)
|
||||
- Release 0.11.0
|
||||
* Add unwrap method to recursive convert to plain old python
|
||||
objects by @syntapy in #187
|
||||
* Remove the is_tomlkit check by @frostming in #195
|
||||
- Release 0.10.2
|
||||
* Use the plain python string representation of Key in
|
||||
KeyAlreadyPresent error message. (#185)
|
||||
* Fix the astimezone() and replace() methods of datetime objects.
|
||||
(#188)
|
||||
* Add type definitions for items() function. (#190)
|
||||
- Release 0.10.1
|
||||
* Preserve the newlines before super tables when rendering.
|
||||
(#178)
|
||||
* Fix the bug that comments are appended with comma when
|
||||
rendering a multiline array. (#181)
|
||||
- Release 0.10.0
|
||||
* Fix the only child detection when creating tables. (#175)
|
||||
* Include the docs/ directory and CHANGELOG.md in sdist tarball.
|
||||
(#176)
|
||||
* Add keyword arguments to string API to allow selecting the
|
||||
representation type. (#177)
|
||||
- Release 0.9.2
|
||||
* When a table's only child is a table or array of table, it is
|
||||
created as a super table. (#175)
|
||||
- Release 0.9.1
|
||||
* Fix a bug of separators not being kept when replacing the
|
||||
value. (#170)
|
||||
* Tuples should be dumped as TOML arrays. (#171)
|
||||
- Release 0.9.0
|
||||
* Add an argument to allow table to be super table by @frostming
|
||||
in #159
|
||||
* Support adding item with dotted key by @frostming in #162
|
||||
* Initialize Sphinx docs by @frostming in #163
|
||||
* Fix values similar to booleans being incorrectly parsed to
|
||||
booleans by @MrGreenTea in #168
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Jan 20 22:45:49 UTC 2022 - Matej Cepl <mcepl@suse.com>
|
||||
|
||||
|
@ -19,16 +19,15 @@
|
||||
%{?!python_module:%define python_module() python-%{**} python3-%{**}}
|
||||
%define skip_python2 1
|
||||
Name: python-tomlkit
|
||||
Version: 0.8.0
|
||||
Version: 0.11.1
|
||||
Release: 0
|
||||
Summary: Style preserving TOML library
|
||||
License: MIT
|
||||
URL: https://github.com/sdispater/tomlkit
|
||||
Source: https://files.pythonhosted.org/packages/source/t/tomlkit/tomlkit-%{version}.tar.gz
|
||||
BuildRequires: %{python_module PyYAML >= 5.3.1}
|
||||
BuildRequires: %{python_module PyYAML >= 6.0}
|
||||
BuildRequires: %{python_module pytest}
|
||||
BuildRequires: %{python_module setuptools}
|
||||
BuildRequires: %{python_module typing >= 3.6}
|
||||
BuildRequires: fdupes
|
||||
BuildRequires: python-rpm-macros
|
||||
BuildArch: noarch
|
||||
@ -54,6 +53,6 @@ Style preserving TOML library
|
||||
%doc README.md
|
||||
%license LICENSE
|
||||
%{python_sitelib}/tomlkit
|
||||
%{python_sitelib}/tomlkit-%{version}-py*.egg-info
|
||||
%{python_sitelib}/tomlkit-%{version}*-info
|
||||
|
||||
%changelog
|
||||
|
3
tomlkit-0.11.1.tar.gz
Normal file
3
tomlkit-0.11.1.tar.gz
Normal file
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:61901f81ff4017951119cd0d1ed9b7af31c821d6845c8c477587bbdcd5e5854e
|
||||
size 186422
|
@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:29e84a855712dfe0e88a48f6d05c21118dbafb283bb2eed614d46f80deb8e9a1
|
||||
size 179067
|
Loading…
Reference in New Issue
Block a user