Skip to content

Commit

Permalink
Merge pull request #5 from funfried/release/0.x
Browse files Browse the repository at this point in the history
Release/0.x
  • Loading branch information
funfried authored Sep 29, 2024
2 parents fff6bc8 + 58dbffb commit a885169
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 75 deletions.
48 changes: 20 additions & 28 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@

<groupId>de.funfried.netbeans.plugins</groupId>
<artifactId>nb-editor-close-left-right-vcs-extension-nb22</artifactId>
<version>0.1-SNAPSHOT</version>
<version>0.1</version>
<packaging>nbm</packaging>

<developers>
Expand Down Expand Up @@ -100,7 +100,7 @@
<dependency>
<groupId>de.funfried.netbeans.plugins</groupId>
<artifactId>nb-editor-close-left-right</artifactId>
<version>1.0.7-SNAPSHOT</version>
<version>1.0.7</version>
</dependency>

<!-- NetBeans -->
Expand Down Expand Up @@ -247,7 +247,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>3.2.5</version>
<version>3.2.6</version>
</plugin>
<plugin>
<groupId>net.revelc.code.formatter</groupId>
Expand Down Expand Up @@ -651,36 +651,28 @@
</reporting>

<profiles>
<profile>
<id>github</id>
<distributionManagement>
<repository>
<id>github</id>
<name>GitHub funfried Apache Maven Packages</name>
<url>https://maven.pkg.github.com/funfried/nb-editor-close-left-right</url>
</repository>
<snapshotRepository>
<id>github</id>
<url>https://maven.pkg.github.com/funfried/nb-editor-close-left-right</url>
</snapshotRepository>
</distributionManagement>
</profile>
<profile>
<id>sonatype-oss-release</id>
<build>
<plugins>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>build-helper-maven-plugin</artifactId>
<executions>
<execution>
<id>regex-snapshot-property</id>
<phase>validate</phase>
<goals>
<goal>regex-property</goal>
</goals>
<configuration>
<name>project.version.isSnapshot</name>
<value>${project.version}</value>
<regex>.*(-SNAPSHOT)$</regex>
<replacement>true</replacement>
<failIfNoMatch>false</failIfNoMatch>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.sonatype.central</groupId>
<artifactId>central-publishing-maven-plugin</artifactId>
<configuration>
<skipPublishing>${project.version.isSnapshot}</skipPublishing>
</configuration>
<groupId>org.sonatype.plugins</groupId>
<artifactId>nexus-staging-maven-plugin</artifactId>
<extensions>true</extensions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
Expand Down
49 changes: 2 additions & 47 deletions src/changes/changes.xml
Original file line number Diff line number Diff line change
Expand Up @@ -9,54 +9,9 @@
</properties>

<body>
<release version="1.0.6" date="2024-03-19" description="Hotfix release">
<action dev="bahlef" type="fix" issue="32">
Fixed close left action which closed all tabs instead of only the left tabs of the selected tab.
</action>
</release>

<release version="1.0.5" date="2024-02-27" description="More close actions and options panel">
<action dev="bahlef" type="add" issue="22">
Added action to close versioning diff editor tabs.
</action>
<release version="0.1" date="2024-09-29" description="First release">
<action dev="bahlef" type="add">
Added action to close versioning search history editor tabs.
</action>
<action dev="bahlef" type="add" issue="22">
Added options panel so a user can select which additional close actions should be shown or not.
</action>
</release>

<release version="1.0.4" date="2023-08-10" description="Fixed new close actions">
<action dev="bahlef" type="fix" issue="17">
Fixed new VCS and project actions.
</action>
</release>

<release version="1.0.3" date="2023-06-15" description="Added more close actions">
<action dev="bahlef" type="add" issue="13">
Added close action to close all tabs which are not changed in the used VCS (Git, SVN and Mercurial supported).
</action>
<action dev="bahlef" type="add">
Added close actions to close all tabs which either belong or not belong to the project of the selected tab.
</action>
</release>

<release version="1.0.2" date="2023-01-26" description="Added signing of nbm">
<action dev="bahlef" type="add">
Signing of nbm file as requested by the NetBeans team to get the plugin center verification
</action>
</release>

<release version="1.0.1" date="2022-10-02" description="Moved actions at the correct position">
<action dev="bahlef" type="fix" issue="1">
With the help of Yenta, I was able to move the actions right next to the NetBeans close actions.
</action>
</release>

<release version="1.0.0" date="N/A" description="First release from funfried aka bahlef aka fbahle">
<action dev="bahlef" type="update">
Update plugin to latest dependencies and plugins and made it ready for the NetBeans plugin center to be published
Created this plugin extension due to NetBeans specific VCS actions dependencies.
</action>
</release>
</body>
Expand Down

0 comments on commit a885169

Please sign in to comment.