Skip to content

Commit

Permalink
Merge pull request #3535 from Hannah-Sten/0.9.5-release
Browse files Browse the repository at this point in the history
Release 0.9.5
  • Loading branch information
PHPirates committed May 1, 2024
2 parents 7173871 + b2748c2 commit 04d73ad
Show file tree
Hide file tree
Showing 6 changed files with 13 additions and 9 deletions.
12 changes: 8 additions & 4 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,13 @@
### Added

### Fixed
* Don't remove forward slashes from file path when creating a file from the unresolved file intention

## [0.9.5-alpha.10] - 2024-04-27
## [0.9.5] - 2024-05-01

Welcome to TeXiFy IDEA 0.9.5! This release automatically translates HTML from the clipboard to LaTeX when pasting, by @jojo2357, and includes a lot of additions and bug fixes!

We thank everyone who submitted issues and provided feedback to make TeXiFy IDEA better.
Your input is valuable and well appreciated.

### Added

Expand Down Expand Up @@ -334,8 +338,8 @@ Thanks to @jojo2357 and @MisterDeenis for contributing to this release!
* Fix some intention previews. ([#2796](https://github.com/Hannah-Sten/TeXiFy-IDEA/issues/2796))
* Other small bug fixes and improvements. ([#2776](https://github.com/Hannah-Sten/TeXiFy-IDEA/issues/2776), [#2774](https://github.com/Hannah-Sten/TeXiFy-IDEA/issues/2774), [#2765](https://github.com/Hannah-Sten/TeXiFy-IDEA/issues/2765)-[#2773](https://github.com/Hannah-Sten/TeXiFy-IDEA/issues/2773))

[Unreleased]: https://github.com/Hannah-Sten/TeXiFy-IDEA/compare/v0.9.5-alpha.10...HEAD
[0.9.5-alpha.10]: https://github.com/Hannah-Sten/TeXiFy-IDEA/compare/v0.9.4...v0.9.5-alpha.10
[Unreleased]: https://github.com/Hannah-Sten/TeXiFy-IDEA/compare/v0.9.5...HEAD
[0.9.5]: https://github.com/Hannah-Sten/TeXiFy-IDEA/compare/v0.9.4...v0.9.5
[0.9.4]: https://github.com/Hannah-Sten/TeXiFy-IDEA/compare/v0.9.3...v0.9.4
[0.9.3]: https://github.com/Hannah-Sten/TeXiFy-IDEA/compare/v0.9.3...v0.9.2
[0.9.2]: https://github.com/Hannah-Sten/TeXiFy-IDEA/compare/v0.9.1...v0.9.2
Expand Down
2 changes: 1 addition & 1 deletion Release-checklist.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,12 @@
- [ ] Run ctan.py

- [ ] Add welcome text to Changelog.md
- [ ] Update welcome text
- [ ] Update version in gradle.properties
- [ ] run patchChangelog (ideally this would be done for the publishPlugin task, but somehow that produces an 'Unreleased' title instead of 0.x.x)
- [ ] Delete alpha versions from changelog
- [ ] runIDE and check the changelog is formatted correctly
- [ ] Run publishPlugin
- [ ] Re-exclude Sumatra dlls in build.gradle.kts
- [ ] Merge PR
- [ ] buildPlugin and release on GitHub, tag version: v0.x.x and release title: Beta x.x.x
- [ ] Close the milestone
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
pluginVersion = 0.9.5-alpha.10
pluginVersion = 0.9.5

# Info about build ranges: https://www.jetbrains.org/intellij/sdk/docs/basics/getting_started/build_number_ranges.html
# Note that an xyz branch corresponds to version 20xy.z and a since build of xyz.*
Expand Down
2 changes: 1 addition & 1 deletion resources/nl/hannahsten/texifyidea/packages/package.list

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ class BibtexParserDefinition : ParserDefinition {
val FILE = object : IStubFileElementType<BibtexFileStub>(
"BibtexStubFileElementType", Language.findInstance(BibtexLanguage::class.java)
) {
override fun getStubVersion(): Int = 13
override fun getStubVersion(): Int = 14
}
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ class LatexParserDefinition : ParserDefinition {
val FILE: IStubFileElementType<*> = object : IStubFileElementType<LatexFileStub>(
"LatexStubFileElementType", Language.findInstance(LatexLanguage::class.java)
) {
override fun getStubVersion(): Int = 70
override fun getStubVersion(): Int = 71
}
}

Expand Down

0 comments on commit 04d73ad

Please sign in to comment.