Skip to content

Commit fe1a408

Browse files
committed
version: Release version 0.9.7
1 parent 55f9bd7 commit fe1a408

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

docs/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
author = 'Giovani Hdalgo Ceotto'
2323

2424
# The full version, including alpha/beta/rc tags
25-
release = '0.9.6'
25+
release = '0.9.7'
2626

2727

2828
# -- General configuration ---------------------------------------------------

docs/notebooks/getting_started_colab.ipynb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -437,8 +437,8 @@
437437
"def mainTrigger(p, y):\n",
438438
" # p = pressure\n",
439439
" # y = [x, y, z, vx, vy, vz, e0, e1, e2, e3, w1, w2, w3]\n",
440-
" # activate main when vz < 0 m/s and z < 800 m.\n",
441-
" return True if y[5] < 0 and y[2] < 800 else False\n",
440+
" # activate main when vz < 0 m/s and z < 800 + 1400 m (+1400 due to surface elevation).\n",
441+
" return True if y[5] < 0 and y[2] < 800+1400 else False\n",
442442
"\n",
443443
"Main = Calisto.addParachute('Main',\n",
444444
" CdS=10.0,\n",

rocketpy/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
__copyright__ = "Copyright 20XX, Projeto Jupiter"
1616
__credits__ = ["Matheus Marques Araujo", "Rodrigo Schmitt", "Guilherme Tavares"]
1717
__license__ = "MIT"
18-
__version__ = "0.9.6"
18+
__version__ = "0.9.7"
1919
__maintainer__ = "Giovani Hidalgo Ceotto"
2020
__email__ = "[email protected]"
2121
__status__ = "Production"

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
setuptools.setup(
77
name="rocketpyalpha",
8-
version="0.9.6",
8+
version="0.9.7",
99
install_requires = [
1010
'numpy>=1.0',
1111
'scipy>=1.0',

0 commit comments

Comments
 (0)