Skip to content

Commit 434fd52

Browse files
committed
bump version
refactor version management
1 parent c533bd2 commit 434fd52

File tree

6 files changed

+22
-4
lines changed

6 files changed

+22
-4
lines changed

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
### Unreleased
22

3+
### v0.14.5: 21 April 2023
4+
35
#### Fixes
46

57
- Fixed regression in debugger not respecting `MIX_ENV` and `MIX_TARGET`

DEVELOPMENT.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ ElixirLS generally aims to support the last 3 versions of Elixir and the last 3
1515
Follow those instructions when publishing a new release.
1616

1717
1. Bump the changelog
18-
2. Bump the version numbers in `apps/elixir_ls_debugger/mix.exs`, `apps/elixir_ls_utils/mix.exs`, and `apps/language_server/mix.exs`
18+
2. Bump the version number in `VERSION`
1919
3. Make PR
2020
4. Merge PR
2121
5. Pull down the latest master

VERSION

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
0.14.5

apps/elixir_ls_debugger/mix.exs

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,15 @@
11
defmodule ElixirLS.Debugger.Mixfile do
22
use Mix.Project
33

4+
@version (__DIR__
5+
|> Path.join("../../VERSION")
6+
|> File.read!()
7+
|> String.trim())
8+
49
def project do
510
[
611
app: :elixir_ls_debugger,
7-
version: "0.14.4",
12+
version: @version,
813
build_path: "../../_build",
914
config_path: "../../config/config.exs",
1015
deps_path: "../../deps",

apps/elixir_ls_utils/mix.exs

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,15 @@
11
defmodule ElixirLS.Utils.Mixfile do
22
use Mix.Project
33

4+
@version (__DIR__
5+
|> Path.join("../../VERSION")
6+
|> File.read!()
7+
|> String.trim())
8+
49
def project do
510
[
611
app: :elixir_ls_utils,
7-
version: "0.14.4",
12+
version: @version,
813
build_path: "../../_build",
914
config_path: "../../config/config.exs",
1015
deps_path: "../../deps",

apps/language_server/mix.exs

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,15 @@
11
defmodule ElixirLS.LanguageServer.Mixfile do
22
use Mix.Project
33

4+
@version (__DIR__
5+
|> Path.join("../../VERSION")
6+
|> File.read!()
7+
|> String.trim())
8+
49
def project do
510
[
611
app: :language_server,
7-
version: "0.14.4",
12+
version: @version,
813
elixir: ">= 1.12.0",
914
build_path: "../../_build",
1015
config_path: "../../config/config.exs",

0 commit comments

Comments
 (0)