Skip to content
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

chore: update support email #15

Merged
merged 1 commit into from
Aug 8, 2024
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
8 changes: 7 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,12 @@

## [Unreleased]

## [1.2.2] - 2024-08-08

### Changed

- Update the support email address

## [1.2.1] - 2024-07-10

### Fixed
Expand Down Expand Up @@ -54,4 +60,4 @@

### Added

- Initial release of the Infracost plugin for JetBrains IDEs.
- Initial release of the Infracost plugin for JetBrains IDEs.
4 changes: 2 additions & 2 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
pluginGroup=io.infracost.plugins
pluginName=Infracost
pluginRepositoryUrl=https://github.com/infracost/jetbrains-infracost
pluginVersion=1.2.1
pluginVersion=1.2.2
pluginSinceBuild=232
pluginUntilBuild=242.*
platformType=IC
Expand All @@ -11,4 +11,4 @@ platformPlugins=
gradleVersion=8.8
kotlin.stdlib.default.dependency=false
org.gradle.configuration-cache=true
org.gradle.caching=true
org.gradle.caching=true
13 changes: 5 additions & 8 deletions src/main/resources/META-INF/plugin.xml
Original file line number Diff line number Diff line change
Expand Up @@ -8,16 +8,14 @@
Scan your Terraform infrastructure as code files with Infracost and then navigate with the handy Findings Explorer.<br/>

Additional help and context is provided in the Findings help pane for each issue identified.
]]></description>
<change-notes><![CDATA[v1.1.0 - Fix rendering of help menu and links<br />
v1.0 - Initial release<br />
]]></change-notes>
]]> </description>
<change-notes><![CDATA[v1.2.2 - Update support email address<br />
]]> </change-notes>

<depends>com.intellij.modules.platform</depends>

<extensions defaultExtensionNs="com.intellij">
<toolWindow id="Infracost: Projects Overview" secondary="true"
anchor="left" icon="/icons/infracost.svg"
<toolWindow id="Infracost: Projects Overview" secondary="true" anchor="left" icon="/icons/infracost.svg"
factoryClass="io.infracost.plugins.infracost.ui.InfracostWindowFactory"/>
<notificationGroup id="Infracost Notifications" displayType="BALLOON"/>
<applicationConfigurable parentId="tools"
Expand All @@ -43,8 +41,7 @@ v1.0 - Initial release<br />
<action id="io.infracost.plugins.infracost.actions.ShowInfracostSettingsAction" icon="AllIcons.General.Settings"
class="io.infracost.plugins.infracost.actions.ShowInfracostSettingsAction" text="Show Settings"
description="Show Settings dialog"/>
<action id="io.infracost.plugins.infracost.actions.DownloadInfracostAction"
icon="AllIcons.Actions.Download"
<action id="io.infracost.plugins.infracost.actions.DownloadInfracostAction" icon="AllIcons.Actions.Download"
class="io.infracost.plugins.infracost.actions.DownloadInfracostAction" text="Download Infracost"
description="Download Infracost"/>
</actions>
Expand Down