Skip to content

Commit

Permalink
Release 1.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
ylobankov committed Nov 23, 2022
1 parent d5f95bd commit d7f5180
Show file tree
Hide file tree
Showing 2 changed files with 52 additions and 2 deletions.
35 changes: 35 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
# Changelog

All notable changes to this project will be documented in this file.

The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).

## [1.0.0] - 2022-11-23

### Added

- RPM:
* Add support for deletion of stale repo metadata.

### Changed

- RPM:
* Include 'primary' files into primary.xml.
* Add the `<rpm:conflicts>` section to primary.xml when it's needed.
* Not include 'primary' files and packages that are provided into the
`<rpm:requires>` section.
* Keep only the highest version of `libc.so.6` in the `<rpm:requires>`
section.

### Fixed

- RPM:
* Process `I18NSTRING` header type entries.
* Handle `latin-1` chars in SUMMARY and DESCRIPTION headers.
* Fix wrong string representation of flags in the `<rpm:requires>`
tag entries.

### Removed

- Completely drop support of Python 2.
19 changes: 17 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,14 +11,29 @@
setup(
name='mkrepo',
packages=[''],
version='0.1.10',
version='1.0.0',
description='Maintain deb and rpm repos on s3',
long_description=long_description,
long_description_content_type="text/markdown",
author='Konstantin Nazarov',
author_email='mail@kn.am',
url='https://github.com/tarantool/mkrepo',
keywords=['rpm', 'deb'],
classifiers=[],
python_requires='>=3.6.*',
classifiers=[
'Environment :: Console',
'Intended Audience :: Developers',
'Intended Audience :: System Administrators',
'Operating System :: POSIX',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3 :: Only',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Topic :: System :: Software Distribution',
'Topic :: System :: Systems Administration',
],
scripts=['mkrepo']
)

0 comments on commit d7f5180

Please sign in to comment.