Skip to content

Removes redundant tags & language aliases #537

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Jun 16, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 20 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,24 @@ and this project adheres to [Semantic Versioning](http://semver.org/).

## [Unreleased]

## [3.2.0]

### Added

- Added `Modern Fortran`, `fortls` and `fpm` as keywords to the extension
([#536](https://github.com/fortran-lang/vscode-fortran-support/issues/536))

### Changed

- Changed Free and Fixed Form language aliases. `Fortran` is now associated with `FortranFreeForm`
([#536](https://github.com/fortran-lang/vscode-fortran-support/issues/536))

## [3.1.0]

### Changed

- Version bumped to v3.1.0

## [3.0.0]

### Added
Expand Down Expand Up @@ -448,6 +466,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
- Initial release

[unreleased]: https://github.com/fortran-lang/vscode-fortran-support/compare/v3.0....HEAD
[3.2.0]: https://github.com/fortran-lang/vscode-fortran-support/compare/v3.1.0...v3.2.0
[3.1.0]: https://github.com/fortran-lang/vscode-fortran-support/compare/v3.0.0...v3.1.0
[3.0.0]: https://github.com/fortran-lang/vscode-fortran-support/compare/v2.6.2...v3.0.0
[2.6.2]: https://github.com/fortran-lang/vscode-fortran-support/compare/v2.6.1...v2.6.2
[2.6.1]: https://github.com/fortran-lang/vscode-fortran-support/compare/v2.6.0...v2.6.1
Expand Down
12 changes: 6 additions & 6 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,10 @@
"Fortran",
"Free Form fortran",
"Fixed Form fortran",
"Modern Fortran",
"IntelliSense",
"fortls",
"fpm",
"IDE"
],
"categories": [
Expand All @@ -60,8 +63,8 @@
{
"id": "FortranFreeForm",
"aliases": [
"Fortran90",
"fortran90"
"Fortran",
"Fortran90"
],
"extensions": [
".f90",
Expand All @@ -84,10 +87,7 @@
{
"id": "FortranFixedForm",
"aliases": [
"Fortran",
"fortran",
"FORTRAN77",
"fortran_fixed-form"
"Fortran77"
],
"extensions": [
".f",
Expand Down