Skip to content

Commit 3d3d982

Browse files
Merge pull request #472 from RocketPy-Team/doc/add-changelog
DOC: Add RocketPy change log file
2 parents 7d45342 + 5ba238c commit 3d3d982

File tree

2 files changed

+86
-2
lines changed

2 files changed

+86
-2
lines changed

.github/pull_request_template.md

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,18 +3,21 @@
33
<!-- You may use this template to describe your Pull Request. But if you believe there is a better way to express yourself, don't hesitate! -->
44

55
## Pull request type
6+
<!-- Remove unchecked box items. -->
67

78
- [ ] Code changes (bugfix, features)
89
- [ ] Code maintenance (refactoring, formatting, tests)
910
- [ ] ReadMe, Docs and GitHub updates
1011
- [ ] Other (please describe):
1112

1213
## Checklist
14+
<!-- Remove irrelevant items to this PR. -->
1315

1416
- [ ] Tests for the changes have been added (if needed)
1517
- [ ] Docs have been reviewed and added / updated
1618
- [ ] Lint (`black rocketpy/ tests/`) has passed locally
1719
- [ ] All tests (`pytest --runslow`) have passed locally
20+
- [ ] `CHANGELOG.md` has been updated (if relevant)
1821

1922
## Current behavior
2023
<!-- Describe current behavior or link to an issue. -->
@@ -27,12 +30,12 @@ Enter text here...
2730
Enter text here...
2831

2932
## Breaking change
30-
<!-- If this introduces a breaking change, please describe the impact and migration path for existing applications below. -->
33+
<!-- If this introduces a breaking change, please describe the impact and migration path for existing applications below. Remove the unchecked box item. -->
3134

3235
- [ ] Yes
3336
- [ ] No
3437

3538
## Additional information
36-
<!-- Include any relevant details or screenshots. -->
39+
<!-- Include any relevant details or screenshots. If none, remove this section. -->
3740

3841
Enter text here...

CHANGELOG.md

Lines changed: 81 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,81 @@
1+
# RocketPy Change Log
2+
3+
All notable changes to `RocketPy` project will be documented in this file.
4+
5+
The format is based on [Keep a Changelog](http://keepachangelog.com/)
6+
and this project adheres to [Semantic Versioning](http://semver.org/).
7+
8+
<!-- Types of changes:
9+
- `Added` for new features.
10+
- `Changed` for changes in existing functionality.
11+
- `Deprecated` for soon-to-be removed features.
12+
- `Removed` for now removed features.
13+
- `Fixed` for any bug fixes.
14+
- `Security` in case of vulnerabilities.
15+
16+
Should not be here:
17+
- tests
18+
- github maintenance
19+
- merge commits
20+
21+
Types of messages:
22+
- Usually the message is the PR title and number
23+
- If the PR is too long to accomplish all the changes (it shouldn't be...),
24+
you can use a second line to describe it
25+
26+
-->
27+
28+
## [Unreleased] - yyyy-mm-dd
29+
30+
Here we write upgrading notes for brands. It's a team effort to make them as
31+
straightforward as possible.
32+
33+
### Added
34+
35+
- DOC: Added this changelog file [#472](https://github.com/RocketPy-Team/RocketPy/pull/472)
36+
-
37+
38+
### Changed
39+
40+
-
41+
42+
### Fixed
43+
44+
-
45+
46+
## [v1.1.0] - 2023-11-19
47+
48+
You can install this version by running `pip install rocketpy==1.1.0`
49+
50+
### Added
51+
52+
- DOC: Documentation for Function Class Usage [#465](https://github.com/RocketPy-Team/RocketPy/pull/465)
53+
- DOC: first simulation all_info [#466](https://github.com/RocketPy-Team/RocketPy/pull/466)
54+
- ENH: draw motors [#436](https://github.com/RocketPy-Team/RocketPy/pull/436)
55+
- DOC: add documentation for flight data export. [#464](https://github.com/RocketPy-Team/RocketPy/pull/464)
56+
- ENH: Add mass_flow_rate() to GenericMotor class [#459](https://github.com/RocketPy-Team/RocketPy/pull/459)
57+
- DOC: Add documentation on how to build the docs [#452](https://github.com/RocketPy-Team/RocketPy/pull/452)
58+
- ENH: new Flight.get_solution_at_time() method [#441](https://github.com/RocketPy-Team/RocketPy/pull/441)
59+
- ENH: rocket drawing [419](https://github.com/RocketPy-Team/RocketPy/pull/419)
60+
- ENH: Adding Stability Margin with Mach dependency [#377](https://github.com/RocketPy-Team/RocketPy/pull/377)
61+
62+
### Changed
63+
64+
- ENH: Spherical Caps Included in Total Length [#455](https://github.com/RocketPy-Team/RocketPy/pull/455)
65+
- Important: This changes behavior of `TankGeometry.add_spherical_caps()`
66+
- ENH: Clean Plots and Prints sub packages init files [#457](https://github.com/RocketPy-Team/RocketPy/pull/457)
67+
- ENH: Add \_MotorPlots Inheritance to Motor Plots Classes [#456](https://github.com/RocketPy-Team/RocketPy/pull/456)
68+
- DOC: organize flight examples folder [#429](https://github.com/RocketPy-Team/RocketPy/pull/429)
69+
- DOC: improve mass and inertia docs [#445](https://github.com/RocketPy-Team/RocketPy/pull/445)
70+
71+
### Fixed
72+
73+
- MNT: Refactor exhaust velocity calculation to avoid ZeroDivisionError [#470](https://github.com/RocketPy-Team/RocketPy/pull/470)
74+
- BUG: Fix find_input() Function to Return a Single Value [#471](https://github.com/RocketPy-Team/RocketPy/pull/471)
75+
- DOC: refactor dispersion analysis notebook [#463](https://github.com/RocketPy-Team/RocketPy/pull/463)
76+
- BUG: User input checks added for Function class [#451](https://github.com/RocketPy-Team/RocketPy/pull/451)
77+
- DOC: fix positions and coordinate system documentation page [#454](https://github.com/RocketPy-Team/RocketPy/pull/)
78+
- MNT: fix env plots legends [#440](https://github.com/RocketPy-Team/RocketPy/pull/440)
79+
- BUG: flight.prints.max_values() fails when launching an EmptyMotor [#438](https://github.com/RocketPy-Team/RocketPy/pull/438)
80+
- BUG: Maintaining Extrapolation when Adding Discrete Functions with Constants [#432](https://github.com/RocketPy-Team/RocketPy/pull/432)
81+
- MNT: Fix env plots max heights [#433](https://github.com/RocketPy-Team/RocketPy/pull/433)

0 commit comments

Comments
 (0)