Prechádzať zdrojové kódy

Release 2.0.17

Switched from RST to Markdown
Benjamin Gleitzman 3 rokov pred
rodič
commit
0cd01d9d50
4 zmenil súbory, kde vykonal 12 pridanie a 6 odobranie
  1. 7 0
      CHANGES.txt
  2. 1 1
      MANIFEST.in
  3. 1 1
      howdoi/__init__.py
  4. 3 4
      setup.py

+ 7 - 0
CHANGES.txt

@@ -1,3 +1,10 @@
+2.0.17
+------
+-  New documentation and mkdocs
+-  Fixed issue with how howdoi chooses the proper search engine (command line flags now override environment variables)
+-  Added a search engine fallback if one of the search engines fails
+-  Fixed issue with howdoi cache
+
 2.0.16
 ------
 -  Fix GDPR issue for those using howdoi in countries outside the US

+ 1 - 1
MANIFEST.in

@@ -1,5 +1,5 @@
 include LICENSE.txt
-include README.rst
+include README.md
 include CHANGES.txt
 include fastentrypoints.py
 include requirements.txt

+ 1 - 1
howdoi/__init__.py

@@ -1 +1 @@
-__version__ = '2.0.16'
+__version__ = '2.0.17'

+ 3 - 4
setup.py

@@ -41,7 +41,7 @@ def read(*names):
     values = dict()
     for name in names:
         value = ''
-        for extension in ('.txt', '.rst'):
+        for extension in ('.txt', '.md'):
             filename = name + extension
             if Path(filename).is_file():
                 with open(filename) as in_file:
@@ -54,8 +54,7 @@ def read(*names):
 long_description = """
 %(README)s
 
-News
-====
+# News
 
 %(CHANGES)s
 
@@ -66,7 +65,7 @@ setup(
     version=howdoi.__version__,
     description='Instant coding answers via the command line',
     long_description=long_description,
-    long_description_content_type='text/x-rst',
+    long_description_content_type='text/markdown',
     classifiers=[
         "Development Status :: 5 - Production/Stable",
         "Environment :: Console",