Skip to content

Commit

Permalink
SpiceyPy 2.0.0
Browse files Browse the repository at this point in the history
* update for N66 support including a bunch of new functions
* dropped 32-bit builds
* simplified returned string lengths
* other things in the change log
  • Loading branch information
AndrewAnnex committed Jun 10, 2017
1 parent 54049a9 commit 53affee
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 7 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ All notable changes to SpiceyPy will be documented here
The format is based on [Keep a Changelog](http://keepachangelog.com/)
and this project tries to adhere to [Semantic Versioning](http://semver.org/).

## [2.0.0]
## [2.0.0] - 2017-06-09
### Added
- Implemented most of the new functions from N66 SPICE
- IntMatrixType support type
Expand Down
2 changes: 1 addition & 1 deletion appveyor/meta.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package:
name: spiceypy
version: "1.1.2.dev0"
version: "2.0.0"

source:
path: ../
Expand Down
6 changes: 3 additions & 3 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -64,16 +64,16 @@ def __getattr__(cls, name):

# General information about the project.
project = 'SpiceyPy'
copyright = '2014-2016, Andrew Annex'
copyright = '2014-2017, Andrew Annex'

# The version info for the project you're documenting, acts as replacement for
# |version| and |release|, also used in various other places throughout the
# built documents.
#
# The short X.Y version.
version = '2.0.0.dev0'
version = '2.0.0'
# The full version, including alpha/beta/rc tags.
release = '2.0.0.dev0'
release = '2.0.0'

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

setup(
name='spiceypy',
version='2.0.0.dev0',
version='2.0.0',
license='MIT',
author='Andrew Annex',
author_email='[email protected]',
Expand Down
7 changes: 6 additions & 1 deletion spiceypy/spiceypy.py
Original file line number Diff line number Diff line change
Expand Up @@ -2036,10 +2036,15 @@ def dasonw(fname, ftype, ifname, ncomch):
Internal undocumented command for creating a new DAS file
:param fname: filename
:type fname: str
:param ftype: type
:type ftype: str
:param ifname: internal file name
:type ifname: str
:param ncomch: amount of comment area
:return:
:type ncomch: int
:return: Handle to new DAS file
:rtype: int
"""
fnamelen = ctypes.c_int(len(fname))
ftypelen = ctypes.c_int(len(ftype))
Expand Down

0 comments on commit 53affee

Please sign in to comment.