-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
f16a074
commit cc4d95b
Showing
2 changed files
with
10 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -38,7 +38,7 @@ jobs: | |
if: github.ref == 'refs/heads/main' | ||
needs: test | ||
env: | ||
VERSION: "3.0.0" | ||
VERSION: "2.5.0" | ||
steps: | ||
- name: Check out repository | ||
uses: actions/checkout@v3 | ||
|
@@ -47,17 +47,17 @@ jobs: | |
with: | ||
release: R2023b | ||
- name: Package toolbox | ||
uses: matlab-actions/[email protected].2 | ||
uses: matlab-actions/[email protected].3 | ||
with: | ||
tasks: package("${{ env.VERSION }}") | ||
- name: Upload toolbox | ||
uses: actions/upload-artifact@v4 | ||
uses: actions/upload-artifact@v4.3.0 | ||
with: | ||
name: 'MAG Data Visualization.mltbx' | ||
path: artifacts | ||
if-no-files-found: error | ||
- name: Create release | ||
uses: ncipollo/release-action@v1 | ||
uses: ncipollo/release-action@v1.13.0 | ||
with: | ||
tag: v${{ env.VERSION }} | ||
artifacts: 'artifacts/MAG Data Visualization.mltbx' | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,16 @@ | ||
# App | ||
|
||
- | ||
|
||
# Software | ||
|
||
- Add separate classes for each specific HK type | ||
- Make `crop` a method of `mag.TimeSeries` | ||
- Customize `get` method of `mag.Data` to accept multiple property names | ||
- Allow charts to have `mag.Data` as input | ||
- Rename `AutomatedAnalysis` to `IMAPTestingAnalysis` | ||
- Rename `Result` to `PSD` | ||
- Rename `mag.AutomatedAnalysis` to `mag.IMAPTestingAnalysis` | ||
- Rename `mag.Result` to `mag.PSD` | ||
- Remove support for `Filters` in charts | ||
- Remove implicit conversion methods for `table`, `timetable` and `tabular` | ||
- Fix issues with setting colors in charts | ||
- Add tests for area, scatter, stairs and stems plots | ||
|
||
# GitHub Workflows | ||
|
||
- Update dependencies to latest versions |