summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/get_version.c2
-rw-r--r--src/mpc.h2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/get_version.c b/src/get_version.c
index e3b95a1..6c98f61 100644
--- a/src/get_version.c
+++ b/src/get_version.c
@@ -23,5 +23,5 @@ along with this program. If not, see http://www.gnu.org/licenses/ .
const char *
mpc_get_version (void)
{
- return "1.1dev";
+ return "1.1";
}
diff --git a/src/mpc.h b/src/mpc.h
index e7a2142..5dd7a51 100644
--- a/src/mpc.h
+++ b/src/mpc.h
@@ -28,7 +28,7 @@ along with this program. If not, see http://www.gnu.org/licenses/ .
#define MPC_VERSION_MAJOR 1
#define MPC_VERSION_MINOR 1
#define MPC_VERSION_PATCHLEVEL 0
-#define MPC_VERSION_STRING "1.1dev"
+#define MPC_VERSION_STRING "1.1"
/* Macros dealing with MPC VERSION */
#define MPC_VERSION_NUM(a,b,c) (((a) << 16L) | ((b) << 8) | (c))