Skip to content

Commit

Permalink
Release 0.7.1
Browse files Browse the repository at this point in the history
Starting base for future development after final adjustments:
- Documentation bumped to 0.7.1 version, and rename (better look!) of the main index file
- Added other files to .gitignore, so all build products are not versioned
- Added badges to description file as wel as lilnk to documentation
  • Loading branch information
Francesco Ricciardi committed Dec 18, 2018
1 parent 7103ffd commit 9f801be
Show file tree
Hide file tree
Showing 5 changed files with 21 additions and 6 deletions.
6 changes: 5 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1 +1,5 @@
.idea
.idea
dist
build
*.egg-info
.cache
15 changes: 13 additions & 2 deletions DESCRIPTION.rst
Original file line number Diff line number Diff line change
@@ -1,13 +1,24 @@
datetime2
=========

The [datetime2](http://pypi.python.org/pypi/datetime2) module provides date
.. image:: https://travis-ci.org/fricciardi/datetime2.svg?branch=master
:target: https://travis-ci.org/fricciardi/datetime2

.. image:: https://readthedocs.org/projects/datetime2/badge/?version=stable
:target: https://datetime2.readthedocs.io/en/stable/?badge=stable

.. image:: https://img.shields.io/badge/License-BSD-green.svg
:target: https://opensource.org/licenses/BSD-3-Clause

The [datetime2](http://pypi.org/project/datetime2) module provides date
and time classes to Python.

It will enhance the standard [datetime](http://docs.python.org/py3k/library/datetime.html)
It will enhance the standard [datetime](https://docs.python.org/3.7/library/datetime.html)
module, adding the capability of constructing and representing date and time in
many formats and removing a few limits that the original package has.

Documentation is hosted at [ReadtheDocs](https://datetime2.readthedocs.io/en/stable/?badge=stable).

Code is hosted at [GitHub](http://github.com/fricciardi/datetime2): the
[wiki pages](https://github.com/fricciardi/datetime2/wiki) host development
discussions. *datetime2* is a one-man, free-time work. Although I am deeply
Expand Down
4 changes: 2 additions & 2 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@
#source_encoding = 'utf-8-sig'

# The master toctree document.
master_doc = 'index'
master_doc = 'datetime2'

# General information about the project.
project = u'datetime2'
Expand All @@ -50,7 +50,7 @@
# The short X.Y version.
version = '0.7'
# The full version, including alpha/beta/rc tags.
release = '0.7'
release = '0.7.1'

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

setuptools.setup(
name='datetime2',
version='0.7.dev3',
version='0.7.1',

description='New date and time classes',
long_description=long_description,
Expand Down

0 comments on commit 9f801be

Please sign in to comment.