Skip to content

Commit

Permalink
Update to v1.2.6
Browse files Browse the repository at this point in the history
  • Loading branch information
Maple-pro committed May 23, 2024
1 parent ba4344a commit 7b35066
Show file tree
Hide file tree
Showing 5 changed files with 28 additions and 7 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ jobs:
run: |
PROPERTIES="$(./gradlew properties --console=plain -q)"
VERSION="$(echo "$PROPERTIES" | grep "^version:" | cut -f2- -d ' ')"
CHANGELOG="$(./gradlew getChangelog --unreleased --no-header --console=plain -q)"
CHANGELOG="$(./gradlew getChangelog --unreleased --no-header --no-links --no-empty-sections --console=plain -q)"
echo "version=$VERSION" >> $GITHUB_OUTPUT
echo "pluginVerifierHomeDir=~/.pluginVerifier" >> $GITHUB_OUTPUT
Expand Down Expand Up @@ -174,6 +174,7 @@ jobs:
# Run plugin structure verification along with IntelliJ Plugin Verifier
verify:
name: Verify plugin
if: false # skip run this
needs: [ build ]
runs-on: ubuntu-latest
steps:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -62,11 +62,11 @@ jobs:
# Publish the plugin to JetBrains Marketplace
- name: Publish Plugin
env:
PUBLISH_TOKEN: ${{ secrets.PUBLISH_TOKEN }}
KOTSUITE_PUBLISH_TOKEN: ${{ secrets.PUBLISH_TOKEN }}
CERTIFICATE_CHAIN: ${{ secrets.CERTIFICATE_CHAIN }}
PRIVATE_KEY: ${{ secrets.PRIVATE_KEY }}
PRIVATE_KEY_PASSWORD: ${{ secrets.PRIVATE_KEY_PASSWORD }}
run: ./gradlew publishPlugin -Ptoken=${{ secrets.PUBLISH_TOKEN }}
run: ./gradlew publishPlugin

# Upload artifact as a release asset
- name: Upload Release Asset
Expand Down
24 changes: 22 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
<!-- Keep a Changelog guide -> https://keepachangelog.com -->

# kotsuite Changelog

My awesome project that provides a lot of useful features, like:

- Feature 1
Expand All @@ -10,65 +11,84 @@ My awesome project that provides a lot of useful features, like:
## [[Unreleased]]

### Added
- Update GitHub Workflows

### Changed

- GitHub CI: Skip verification step

### Deprecated

### Removed

### Fixed

- GitHub release workflow

### Security

## [[1.2.5]] - 2024-05-23

### Added

- Update GitHub Workflows

## [[1.2.4]] - 2024-05-23

### Added

- Fix GitHub workflows

## [1.2.2] - 2024-05-23

### Changed

- Unset until-build number.

## [1.2.1] - 2023-12-04

### Fixed

- 错误的 File 依赖导致无法正常运行

## [1.2.0] - 2023-11-24

### Added

- 已能正常使用,用于结项

## [1.1.7] - 2023-11-14

### Added

- Use `@argument` option to run KotSuite with arguments

## [1.1.6] - 2023-09-25

### Added

- Update plugin changelog

## [1.1.5] - 2023-09-25

### Added

- Output module dependency to `kotsuite-dependency-classpath.txt` in the module root path

## [1.0.1] - 2023-04-19

### Added

- Change plugin icon

## [1.0.0] - 2023-04-18

### Added

- Initial scaffold created from [IntelliJ Platform Plugin Template](https://github.com/JetBrains/intellij-platform-plugin-template)
- Integrate KotSuite command line tool

[[Unreleased]]: https://github.com/Maple-pro/kotsuite/compare/v1.2.4...HEAD
[[Unreleased]]: https://github.com/Maple-pro/kotsuite/compare/v1.2.5...HEAD
[1.2.5]: https://github.com/Maple-pro/kotsuite/compare/v1.2.4...v1.2.5
[1.2.4]: https://github.com/Maple-pro/kotsuite/compare/v1.2.2...v1.2.4
[1.2.2]: https://github.com/Maple-pro/kotsuite/compare/v1.2.1...v1.2.2
[1.2.1]: https://github.com/Maple-pro/kotsuite/compare/v1.2.0...v1.2.1
Expand Down
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ plugins {
// Gradle IntelliJ Plugin
id("org.jetbrains.intellij") version "1.15.0"
// Gradle Changelog Plugin
id("org.jetbrains.changelog") version "2.0.0"
id("org.jetbrains.changelog") version "2.2.0"
// Gradle Qodana Plugin
id("org.jetbrains.qodana") version "0.1.13"
}
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ platformVersion=2023.2.1.2
platformType=AI
org.gradle.jvmargs=-Xmx2048M -Dkotlin.daemon.jvm.options\="-Xmx2048M"
platformPlugins=android, com.intellij.java
pluginVersion=1.2.5
pluginVersion=1.2.6
pluginSinceBuild=222
pluginUntilBuild=232.*
ASPath=C\:\\Users\\17199\\AppData\\Local\\JetBrains\\Toolbox\\apps\\AndroidStudio\\ch-0\\221.6008.13.2211.9619390
Expand Down

0 comments on commit 7b35066

Please sign in to comment.