Skip to content

Commit

Permalink
Release v0.5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
alifeee committed Sep 26, 2023
1 parent a097d0d commit 777b5a9
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion factorio/info.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "proximity-voice-chat",
"version": "0.4.0",
"version": "0.5.0",
"title": "Proximity Voice Chat",
"author": "alifeee",
"factorio_version": "1.1",
Expand Down
2 changes: 1 addition & 1 deletion mumble/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ list(APPEND CMAKE_MODULE_PATH "${CMAKE_SOURCE_DIR}/cmake")
include(TargetArch)

project(MumblePlugin
VERSION "0.4.0"
VERSION "0.5.0"
DESCRIPTION "Factorio Positional Audio Plugin"
LANGUAGES "C"
)
Expand Down
2 changes: 1 addition & 1 deletion mumble/manifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,5 @@
<plugin os="linux" arch="x64">libplugin.so</plugin>
</assets>
<name>Factorio Positional Audio</name>
<version>0.4.0</version>
<version>0.5.0</version>
</bundle>
2 changes: 1 addition & 1 deletion mumble/plugin.c
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ void mumble_releaseResource(const void *pointer)

mumble_version_t mumble_getVersion()
{
char *VERSION = "0.4.0";
char *VERSION = "0.5.0";

mumble_version_t version;
char *v = malloc(strlen(VERSION) + 1);
Expand Down

0 comments on commit 777b5a9

Please sign in to comment.