Skip to content

Commit

Permalink
Merge branch 'master' into jan/feature-cell-diameter
Browse files Browse the repository at this point in the history
  • Loading branch information
blechta committed Sep 24, 2017
2 parents cd99fc7 + 683fe8f commit faffacc
Show file tree
Hide file tree
Showing 6 changed files with 20 additions and 4 deletions.
5 changes: 5 additions & 0 deletions ChangeLog.rst
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,11 @@ Changelog
- Add quadrilateral and hexahedron reference cells
- Add quadrilateral and hexahedron elements (with a wrapping class for TensorProductElement)

2017.1.0.post1 (2017-09-12)
---------------------------

- Change PyPI package name to fenics-fiat.

2017.1.0 (2017-05-09)
---------------------

Expand Down
2 changes: 1 addition & 1 deletion FIAT/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@
from FIAT.reference_element import ufc_cell, ufc_simplex # noqa: F401
from FIAT.hdivcurl import Hdiv, Hcurl # noqa: F401

__version__ = pkg_resources.get_distribution("FIAT").version
__version__ = pkg_resources.get_distribution("fenics-fiat").version

# List of supported elements and mapping to element classes
supported_elements = {"Argyris": Argyris,
Expand Down
2 changes: 1 addition & 1 deletion doc/sphinx/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@
project = u'FInite element Automatic Tabulator (FIAT)'
this_year = datetime.date.today().year
copyright = u'%s, FEniCS Project' % this_year
version = pkg_resources.get_distribution("FIAT").version
version = pkg_resources.get_distribution("fenics-fiat").version
release = version

# The language for content autogenerated by Sphinx. Refer to documentation
Expand Down
1 change: 1 addition & 0 deletions doc/sphinx/source/releases.rst
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ Release notes
:maxdepth: 2

releases/next
releases/v2017.1.0.post1
releases/v2017.1.0
releases/v2016.2.0
releases/v2016.1.0
Expand Down
10 changes: 10 additions & 0 deletions doc/sphinx/source/releases/v2017.1.0.post1.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
=================================
Changes in version 2017.1.0.post1
=================================

FIAT 2017.1.0.post1 was released on 2017-09-12.

Summary of changes
==================

- Change PyPI package name to fenics-fiat.
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,9 @@
url = "https://bitbucket.org/fenics-project/fiat/"
tarball = None
if 'dev' not in version:
tarball = url + "downloads/fiat-%s.tar.gz" % version
tarball = url + "downloads/fenics-fiat-%s.tar.gz" % version

setup(name="FIAT",
setup(name="fenics-fiat",
description="FInite element Automatic Tabulator",
version=version,
author="Robert C. Kirby et al.",
Expand Down

0 comments on commit faffacc

Please sign in to comment.