Skip to content

Commit

Permalink
API: Bump version to account for the changes required from plugins
Browse files Browse the repository at this point in the history
Also, add entry to the Spyder 6 changelog describing them and other
entries with the new features merged since alpha1.
  • Loading branch information
ccordoba12 committed Jul 10, 2023
1 parent c2ce802 commit 45ed105
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 4 deletions.
24 changes: 21 additions & 3 deletions changelogs/Spyder-6.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# History of changes for Spyder 6

## Version 6.0alpha1 (2023-06-19)
## Version 6.0.0 (unreleased)

### New features

Expand All @@ -17,17 +17,35 @@

### Important fixes

* Environment variables declared in `~/.bashrc` or `~/.zhrc` are detected and
passed to the IPython console.
* Restore ability to load Hdf5 and Dicom files through the Variable Explorer
(this was working in Spyder 4 and before).

### UX/UI improvements

* The file switcher can open files present in the current project.
* The interface font used by the entire application can be configured in
`Preferences > Appearance`
* Files can be opened in the editor by pasting their path in the Working
Directory toolbar.

### New API features

* Generalize Run plugin to support generic inputs and executors. This allows
* `SpyderPluginV2.get_description` must be a static method now and
`SpyderPluginV2.get_icon` a class or static method. This is necessary to
display the list of available plugins in Preferences in a more user-friendly
way (see PR spyder-ide/spyder#21101).
* Generalize the Run plugin to support generic inputs and executors. This allows
plugins to declare what kind of inputs (i.e. file, cell or selection) they
can execute and how they will display the result.
* Add a new plugin for the files and symbols switcher.
* Add a new plugin called `Switcher` for the files and symbols switcher.
* Declare a proper API for the Projects plugin.

----

## Version 6.0alpha1 (2023-06-19)

### Issues Closed

* [Issue 20885](https://github.com/spyder-ide/spyder/issues/20885) - Error when opening files due to a corrupted config file ([PR 20886](https://github.com/spyder-ide/spyder/pull/20886) by [@dalthviz](https://github.com/dalthviz))
Expand Down
2 changes: 1 addition & 1 deletion spyder/api/_version.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,5 +22,5 @@
updated.
"""

VERSION_INFO = (0, 9, 1)
VERSION_INFO = (0, 10, 0)
__version__ = '.'.join(map(str, VERSION_INFO))

0 comments on commit 45ed105

Please sign in to comment.