From 4be97077bc9681cd9b537e691c96814cef8f78e9 Mon Sep 17 00:00:00 2001 From: madTeddy Date: Thu, 20 May 2021 20:16:58 +0300 Subject: [PATCH] Release 1.0.2 --- LICENSE | 2 +- README.md | 1 + README.rst | 4 ++++ setup.cfg | 2 +- setup.py | 15 ++++++++------- sphinxsharp/locales/ru/LC_MESSAGES/sphinxsharp.po | 6 +++--- sphinxsharp/sphinxsharp.py | 4 ++-- 7 files changed, 20 insertions(+), 14 deletions(-) diff --git a/LICENSE b/LICENSE index b38850d..8bd7e7c 100644 --- a/LICENSE +++ b/LICENSE @@ -1,6 +1,6 @@ MIT License -Copyright (c) 2019 MadTeddy +Copyright (c) 2021 MadTeddy Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/README.md b/README.md index 91f3130..a56f285 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,5 @@ # Sphinxsharp +[![PyPI version](https://badge.fury.io/py/sphinxsharp.svg)](https://badge.fury.io/py/sphinxsharp) [![Documentation Status](https://readthedocs.org/projects/sphinxsharp-docs/badge/?version=latest)](https://sphinxsharp-docs.readthedocs.io/en/latest/?badge=latest) CSharp (C#) domain for Sphinx diff --git a/README.rst b/README.rst index 0d46f4f..f5b3090 100644 --- a/README.rst +++ b/README.rst @@ -1,3 +1,7 @@ +.. image:: https://badge.fury.io/py/sphinxsharp.svg + :target: https://badge.fury.io/py/sphinxsharp + :alt: PyPI Version + .. image:: https://readthedocs.org/projects/sphinxsharp-docs/badge/?version=latest :target: https://sphinxsharp-docs.readthedocs.io/en/latest/?badge=latest :alt: Documentation Status diff --git a/setup.cfg b/setup.cfg index 224a779..0f94f37 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,2 +1,2 @@ [metadata] -description-file = README.md \ No newline at end of file +description_file = README.md \ No newline at end of file diff --git a/setup.py b/setup.py index 2202a3d..96ef39b 100644 --- a/setup.py +++ b/setup.py @@ -1,6 +1,5 @@ from setuptools import setup from os import path -from glob import glob this_directory = path.abspath(path.dirname(__file__)) with open(path.join(this_directory, 'README.rst'), encoding='utf-8') as f: @@ -10,15 +9,15 @@ name = 'sphinxsharp', packages = ['sphinxsharp'], include_package_data=True, - version = '1.0.1', + version = '1.0.2', license='MIT', description = 'CSharp (C#) domain for sphinx.', long_description=long_description, author = 'Andrey Mignevich', author_email = 'andrey.mignevich@gmail.com', url = 'https://github.com/madTeddy/sphinxsharp', - download_url = 'https://github.com/madTeddy/sphinxsharp/archive/v1.0.1.tar.gz', - keywords = ['Sphinx','Domain','CSharp','C#','Sphinxsharp'], + download_url = 'https://github.com/madTeddy/sphinxsharp/archive/refs/tags/v1.0.2.tar.gz', + keywords = ['Documentation','Sphinx','Domain','CSharp','C#','Sphinxsharp'], install_requires=[ 'docutils', 'sphinx', @@ -26,12 +25,14 @@ classifiers=[ 'Development Status :: 5 - Production/Stable', 'Intended Audience :: Developers', - 'Topic :: Software Development :: Build Tools', + 'Topic :: Documentation :: Sphinx', 'License :: OSI Approved :: MIT License', 'Programming Language :: Python :: 3', 'Programming Language :: Python :: 3.4', 'Programming Language :: Python :: 3.5', 'Programming Language :: Python :: 3.6', - 'Programming Language :: Python :: 3.7' - ], + 'Programming Language :: Python :: 3.7', + 'Programming Language :: Python :: 3.8', + 'Programming Language :: Python :: 3.9' + ] ) \ No newline at end of file diff --git a/sphinxsharp/locales/ru/LC_MESSAGES/sphinxsharp.po b/sphinxsharp/locales/ru/LC_MESSAGES/sphinxsharp.po index bf4c716..62f0c62 100644 --- a/sphinxsharp/locales/ru/LC_MESSAGES/sphinxsharp.po +++ b/sphinxsharp/locales/ru/LC_MESSAGES/sphinxsharp.po @@ -1,10 +1,10 @@ # TRANSLATE FILE FOR SPHINXSHARP EXTENSION. -# Copyright (C) 2019 MADTEDDY -# ANDREY MIGNEVICH , 2019. +# Copyright (C) 2021 MADTEDDY +# ANDREY MIGNEVICH , 2021. # msgid "" msgstr "" -"Project-Id-Version: 1.0.1\n" +"Project-Id-Version: 1.0.2\n" "POT-Creation-Date: 2019-04-06 22:07+0300\n" "Last-Translator: ANDREY MIGNEVICH \n" "MIME-Version: 1.0\n" diff --git a/sphinxsharp/sphinxsharp.py b/sphinxsharp/sphinxsharp.py index b042c03..6969c3e 100644 --- a/sphinxsharp/sphinxsharp.py +++ b/sphinxsharp/sphinxsharp.py @@ -4,7 +4,7 @@ Sphinxsharp Lite (with default styling) - :copyright: Copyright 2019 by MadTeddy + :copyright: Copyright 2021 by MadTeddy """ import re @@ -738,7 +738,7 @@ def setup(app): locale_dir = path.join(package_dir, 'locales') app.add_message_catalog('sphinxsharp', locale_dir) return { - 'version': '1.0.1', + 'version': '1.0.2', 'parallel_read_safe': True, 'parallel_write_safe': True, }