Skip to content

Commit

Permalink
Merge pull request #465 from mcneel/sbaer/7.15_version_numbers
Browse files Browse the repository at this point in the history
update version number files to 7.15
  • Loading branch information
sbaer committed Mar 23, 2022
2 parents 820c1c9 + 8f0485f commit 4c9ea68
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 5 deletions.
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,8 @@ __pycache__/
/src/rhino3dm.egg-info
/build
/dist
/.idea
*/.idea
*/cmake-build-debug
/tests/example_3dm_files_20181010
/docbuilders/docgen/bin
/docbuilders/docgen/obj
Expand Down
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 this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [7.15.0] - unreleased
## [7.15.0] - 2022-03-23
### Added
- (js, py) Added ViewportInfo.TargetPoint

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ def build_extension(self, ext):

setup(
name='rhino3dm',
version='7.14.2',
version='7.15.0',
author='Robert McNeel & Associates',
author_email='steve@mcneel.com',
description='Python library based on OpenNURBS with a RhinoCommon style',
Expand Down
2 changes: 1 addition & 1 deletion src/rhino3dm/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
else:
from ._rhino3dm import *

__version__ = '7.14.2'
__version__ = '7.15.0'

Point2d.__str__ = lambda self: "{},{}".format(self.X, self.Y)
Point3d.__str__ = lambda self: "{},{},{}".format(self.X, self.Y, self.Z)
Expand Down
2 changes: 1 addition & 1 deletion src/version.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
7.14.1
7.15.0

0 comments on commit 4c9ea68

Please sign in to comment.