Skip to content

Commit ce29b93

Browse files
committed
prepare for release
1 parent bfecf6d commit ce29b93

File tree

4 files changed

+8
-7
lines changed

4 files changed

+8
-7
lines changed

CHANGELOG.rst

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
Release history
22
===============
33

4-
v0.7.0 - not yet released
5-
-------------------------
4+
`v0.7.0`_ - 2020-03-27
5+
----------------------
66

77
*PlotOptiX has moved to OptiX 7 framework in this version.* This is a major change, basically a rewrite of entire
88
ray-tracting engine, followed by several breaking changes in the Python API. Denoiser binaries included in GPU
@@ -11,7 +11,7 @@ with using PlotOptiX on some hardware configurations, related to the shader comp
1111

1212
OptiX 7 shifts significant parts of functionality to the application side. Multi-GPU support and most of the
1313
ray-tracting host state is now maintained by PlotOptiX code. Be warned that this code is fresh! If you spot
14-
problems, go ahead and submit an issue to the tracker on GitHub.
14+
problems, go ahead and submit issue to the tracker on GitHub.
1515

1616
Changes
1717
~~~~~~~
@@ -280,6 +280,7 @@ v0.1.2.5 - 2019-04-16
280280

281281
Two weeks and some steps from the initial release. Starting changelog relative to this point.
282282

283+
.. _`v0.7.0`: https://github.com/rnd-team-dev/plotoptix/releases/tag/v0.7.0
283284
.. _`v0.5.2`: https://github.com/rnd-team-dev/plotoptix/releases/tag/v0.5.2
284285
.. _`v0.5.1`: https://github.com/rnd-team-dev/plotoptix/releases/tag/v0.5.1
285286
.. _`v0.5.0`: https://github.com/rnd-team-dev/plotoptix/releases/tag/v0.5.0

README.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ PlotOptiX
1313

1414
**Data visualisation in Python based on NVIDIA OptiX ray tracing framework.**
1515

16-
**Transition to OptiX 7 is almost finished. New release should be ready in a few days, after code cleanup. Please, be patient!**
16+
**The package is moved to OptiX 7. See `release history <https://plotoptix.rnd.team/changelog.html>`__ for changes.**
1717

1818
3D `ray tracing <https://en.wikipedia.org/wiki/Ray_tracing_(graphics)>`__ package for Python, aimed at easy and aesthetic visualization
1919
of large datasets (and small as well). Data features can be represented on plots as a position, size/thickness and color of markers

plotoptix/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@
1212

1313
__author__ = "Robert Sulej, R&D Team <dev@rnd.team>"
1414
__status__ = "beta"
15-
__version__ = "0.7.dev3"
16-
__date__ = "23 Mar 2020"
15+
__version__ = "0.7.0"
16+
__date__ = "27 Mar 2020"
1717

1818
import logging
1919

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,7 @@ def get_tag(self):
119119

120120

121121
setup(name='plotoptix',
122-
version='0.7.dev3',
122+
version='0.7.0',
123123
url='https://rnd.team/project/plotoptix',
124124
project_urls={
125125
'Documentation': 'https://plotoptix.rnd.team',

0 commit comments

Comments
 (0)