Skip to content

Commit

Permalink
Version 1.0.8
Browse files Browse the repository at this point in the history
  • Loading branch information
monich committed Nov 5, 2019
1 parent 3330da0 commit 488a3f5
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 9 deletions.
8 changes: 4 additions & 4 deletions Makefile
@@ -1,6 +1,6 @@
# -*- Mode: makefile-gmake -*-

.PHONY: clean all debug release pkgconfig
.PHONY: clean all debug release pkgconfig install install-dev

#
# Required packages
Expand All @@ -20,7 +20,7 @@ all: debug release pkgconfig

VERSION_MAJOR = 1
VERSION_MINOR = 0
VERSION_RELEASE = 7
VERSION_RELEASE = 8

# Version for pkg-config
PCVERSION = $(VERSION_MAJOR).$(VERSION_MINOR).$(VERSION_RELEASE)
Expand Down Expand Up @@ -123,8 +123,8 @@ DEBUG_LINK = $(DEBUG_BUILD_DIR)/$(LIB_SONAME)
RELEASE_LINK = $(RELEASE_BUILD_DIR)/$(LIB_SONAME)

$(GEN_FILES): | $(GEN_DIR)
$(DEBUG_OBJS): | $(DEBUG_BUILD_DIR)
$(RELEASE_OBJS): | $(RELEASE_BUILD_DIR)
$(DEBUG_OBJS): | $(DEBUG_BUILD_DIR) $(GEN_FILES)
$(RELEASE_OBJS): | $(RELEASE_BUILD_DIR) $(GEN_FILES)
$(PKGCONFIG): | $(BUILD_DIR)
$(DEBUG_LINK): | $(DEBUG_LIB)
$(RELEASE_LINK): | $(RELEASE_LIB)
Expand Down
6 changes: 6 additions & 0 deletions debian/changelog
@@ -1,3 +1,9 @@
libmce-glib (1.0.8) unstable; urgency=low

* Avoid overlinking.

-- Slava Monich <slava.monich@jolla.com> Tue, 05 Nov 2019 14:21:43 +0300

libmce-glib (1.0.7) unstable; urgency=low

* Allow use of CC & LDFLAGS defined by build system.
Expand Down
8 changes: 4 additions & 4 deletions debian/copyright
@@ -1,4 +1,4 @@
Copyright (C) 2016 Jolla Ltd.
Copyright (C) 2016-2019 Jolla Ltd.

You may use this file under the terms of BSD license as follows:

Expand All @@ -11,9 +11,9 @@ are met:
2. Redistributions in binary form must reproduce the above copyright
notice, this list of conditions and the following disclaimer in the
documentation and/or other materials provided with the distribution.
3. Neither the name of Jolla Ltd nor the names of its contributors may
be used to endorse or promote products derived from this software
without specific prior written permission.
3. Neither the names of the copyright holders nor the names of its
contributors may be used to endorse or promote products derived
from this software without specific prior written permission.

THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
Expand Down
2 changes: 1 addition & 1 deletion rpm/libmce-glib.spec
@@ -1,5 +1,5 @@
Name: libmce-glib
Version: 1.0.7
Version: 1.0.8
Release: 0
Summary: MCE client library
Group: Development/Libraries
Expand Down

0 comments on commit 488a3f5

Please sign in to comment.