Compare commits

1 Commits
main ... 1.1

4 changed files with 20 additions and 51 deletions

BIN
pyasn1-0.5.0.tar.gz (Stored with Git LFS) Normal file

Binary file not shown.

BIN
pyasn1-0.6.1.tar.gz (Stored with Git LFS)

Binary file not shown.

View File

@@ -1,40 +1,3 @@
-------------------------------------------------------------------
Mon Oct 7 09:45:53 UTC 2024 - John Paul Adrian Glaubitz <adrian.glaubitz@suse.com>
- Update to 0.6.1
* Added support for Python 3.13 and updated GitHub Actions
* Removed Python 2 support and related code
* Improved error handling and consistency
* Runtime deprecation of `tagMap` and `typeMap` aliases
* Fixed duplicated and missing declarations
* Cleaned documentation and comments
* Removed bdist_wheel universal flag from setup.cfg
-------------------------------------------------------------------
Wed Apr 3 14:05:40 UTC 2024 - Dirk Müller <dmueller@suse.com>
- update to 0.6.0:
* Added support for previously missing RELATIVE-OID construct
* Updated link to Layman's Guide Now it provides a link to
links to a formatted PDF version of the paper, at a stable
domain (researchgate), using https
* Removed support for EOL Python 2.7, 3.6, 3.7
-------------------------------------------------------------------
Mon Nov 27 15:52:23 UTC 2023 - Dirk Müller <dmueller@suse.com>
- update to 0.5.1:
* Added support for PyPy 3.10 and Python 3.12
* Updated RTD configuration to include a dummy index.rst
redirecting to contents.html, ensuring compatibility with
third-party documentation and search indexes.
* Fixed the API breakage wih decoder.decode(substrateFun=...).
* A substrateFun passed to ``decoder.decode()`` can now be
either v0.4 Non-Streaming or v0.5 Streaming.
pyasn1 will detect and handle both cases transparently.
* A substrateFun passed to one of the new streaming decoders is
* still expected to be v0.5 Streaming only.
-------------------------------------------------------------------
Thu May 4 19:21:20 UTC 2023 - Dirk Müller <dmueller@suse.com>

View File

@@ -1,7 +1,7 @@
#
# spec file for package python-pyasn1
#
# Copyright (c) 2024 SUSE LLC
# Copyright (c) 2023 SUSE LLC
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
@@ -16,9 +16,11 @@
#
%{?!python_module:%define python_module() python-%{**} python3-%{**}}
%define oldpython python
%{?sle15_python_module_pythons}
Name: python-pyasn1
Version: 0.6.1
Version: 0.5.0
Release: 0
Summary: ASN.1 types and codecs
License: BSD-2-Clause
@@ -31,6 +33,10 @@ BuildRequires: %{python_module wheel}
BuildRequires: fdupes
BuildRequires: python-rpm-macros
BuildArch: noarch
%ifpython2
Obsoletes: %{oldpython}-asn1 < 0.2.3
Provides: %{oldpython}-asn1 = %{version}
%endif
%python_subpackages
%description