Skip to content

Commit 8b96e57

Browse files
committed
Switch to version 1.1
1 parent f41029e commit 8b96e57

File tree

4 files changed

+9
-8
lines changed

4 files changed

+9
-8
lines changed

CHANGELOG.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
1-
## Version 1.1 (TDB)
2-
###🎉 New Features
1+
## Version 1.1 (14/03/2024)
2+
### 🎉 New Features
33
- New `.to_mat()` method to export the data downloaded to a MATLAB file, with the computation of the correct MATLAB time format.
44

55
### 👷 Bug fixes
66
- `spectrum.plot_1D_spectrum` no more plot the spectrum in polar coordinates;
7-
- reduce default flot size in `spectrum.plot_2D_spectrum` and `spectrum.plot_1D_spectrum` and supress unwanted outpout
7+
- reduce default plot size in `spectrum.plot_2D_spectrum` and `spectrum.plot_1D_spectrum` and supress unwanted output
88
- in 'raw_compute_parameters_from_1D_spectrum' the CgE was not computed correctly and convert to kW/m
99
- in 'raw_compute_parameters_from_2D_spectrum': convert CgE to kW/m
10-
- in 'spectrum/download_data': properly close the connection
10+
- in 'spectrum/download_data': properly closes the connection
1111

1212
## Version 1.0.0 (27/02/2023)
1313
### 📝 Documentation

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ in expected environmental conditions,and de-risk investment in future technology
2828

2929
To install the toolbox, the following packages are necessary:
3030

31-
- python (>= 3.9, <3.12)
31+
- python (>= 3.9, <3.13)
3232
- pandas (>= 1.0.0)
3333
- requests (>= 2.23.0)
3434
- numpy (>= 1.20.1)
@@ -60,7 +60,7 @@ $ source env-resourcecode/bin/activate
6060

6161
In this virtual environment, you can now install the library. The library is
6262
available on PyPI, and installation is straightforward, using the following
63-
command :
63+
command:
6464

6565
```
6666
(env-resourcecode)$ python -m pip install resourcecode
@@ -71,7 +71,7 @@ To test whether the install has been successful, you can run:
7171

7272
```bash
7373
(env-resourcecode)$ python -c "import resourcecode ; print(resourcecode.__version__)"
74-
0.6.4
74+
1.1.0
7575
```
7676

7777
which should print the current locally installed version of `resourcecode`.

resourcecode/__version__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,5 +17,5 @@
1717
# You should have received a copy of the GNU General Public License along
1818
# with Resourcecode. If not, see <https://www.gnu.org/licenses/>.
1919

20-
numversion = (1, 0, 0)
20+
numversion = (1, 1, 0)
2121
__version__ = ".".join(str(num) for num in numversion)

setup.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -57,6 +57,7 @@
5757
"Programming Language :: Python :: 3.9",
5858
"Programming Language :: Python :: 3.10",
5959
"Programming Language :: Python :: 3.11",
60+
"Programming Language :: Python :: 3.12",
6061
"Programming Language :: Python :: 3 :: Only",
6162
"Operating System :: OS Independent",
6263
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",

0 commit comments

Comments
 (0)