kotlin-language-server
kotlin-language-server copied to clipboard
Bump tag patch version on each merged PR to the main branch
If we automatically bump the patch version of the tag and create a release on each merge of a PR, we'll be able to allow users to fetch the latest updates to the kotlin language server as soon as they're addressed in code. This will help users keep up to date with the latest language server features instead of having to wait months for a new release.
To do this we could:
- Bump the patch version on each PR merge via a GitHub action.
- Example: 1.3.1 -> 1.3.2
- Perform a GitHub release on new patch versions, if not done so already.
Hm, I agree that we should release more often but after every PR feels a bit frequent to me. Maybe if we could tag them as nightly/beta or similar. Especially if we're going to do something along the lines of #429, we would essentially open a PR on the Homebrew side for every PR here.
On the other hand I don't really see a better solution and having users on the latest release is probably also good to avoid duplicating issues.
having users on the latest release is probably also good to avoid duplicating issues
I think that you're right @fwcd. It does feel frequent but in time I think that the benefits will outweigh this. Either way, I've put up a PR for it, so let me know what you think when you're ready :)