From bafd25fd25b1fcb35c4102437c2015eb8dabe93e Mon Sep 17 00:00:00 2001 From: Jan Decaluwe Date: Wed, 28 Mar 2018 20:53:46 +0200 Subject: [PATCH] version bump --- README.md | 4 ++-- doc/source/conf.py | 4 ++-- doc/source/index.rst | 2 +- doc/source/whatsnew/{1.0.rst => 0.10.rst} | 0 myhdl/__init__.py | 2 +- 5 files changed, 6 insertions(+), 6 deletions(-) rename doc/source/whatsnew/{1.0.rst => 0.10.rst} (100%) diff --git a/README.md b/README.md index 10dd41377..4ea6d75b2 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,5 @@ -MyHDL 1.0dev -============ +MyHDL 0.10 +========== [![Join the chat at https://gitter.im/jandecaluwe/myhdl](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/myhdl/myhdl?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge) diff --git a/doc/source/conf.py b/doc/source/conf.py index 4117f53d9..b6b333790 100644 --- a/doc/source/conf.py +++ b/doc/source/conf.py @@ -46,7 +46,7 @@ # General information about the project. project = u'MyHDL' -copyright = u'2015, Jan Decaluwe' +copyright = u'2018, Jan Decaluwe' # The version info for the project you're documenting, acts as replacement for # |version| and |release|, also used in various other places throughout the @@ -170,7 +170,7 @@ # base URL from which the finished HTML is served. #html_use_opensearch = '' -# This is the file name suffix for HTML files (e.g. ".xhtml"). +s This is the file name suffix for HTML files (e.g. ".xhtml"). #html_file_suffix = None # Output file base name for HTML help builder. diff --git a/doc/source/index.rst b/doc/source/index.rst index a9d3157c4..4038f169a 100644 --- a/doc/source/index.rst +++ b/doc/source/index.rst @@ -18,7 +18,7 @@ Welcome to the MyHDL documentation :maxdepth: 2 manual/index - whatsnew/1.0 + whatsnew/0.10 python3 Old Whatsnew documents diff --git a/doc/source/whatsnew/1.0.rst b/doc/source/whatsnew/0.10.rst similarity index 100% rename from doc/source/whatsnew/1.0.rst rename to doc/source/whatsnew/0.10.rst diff --git a/myhdl/__init__.py b/myhdl/__init__.py index e16869edd..e75d9c7c1 100644 --- a/myhdl/__init__.py +++ b/myhdl/__init__.py @@ -52,7 +52,7 @@ from __future__ import absolute_import from __future__ import print_function -__version__ = "1.0dev" +__version__ = "0.10" class StopSimulation(Exception):