Skip to content

Commit

Permalink
Set version to 4.5-devel
Browse files Browse the repository at this point in the history
  • Loading branch information
radioactiveman committed Nov 17, 2024
1 parent f6ff6b2 commit 78f17f5
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ dnl ***
dnl Initialize
dnl ==========
AC_PREREQ([2.59])
AC_INIT([audacious-plugins], [4.4.2])
AC_INIT([audacious-plugins], [4.5-devel])
AC_COPYRIGHT([Copyright (C) 2001-2024 Audacious developers and others])

AC_DEFINE_UNQUOTED([PACKAGE], "$PACKAGE_NAME", [Name of package])
Expand Down Expand Up @@ -34,9 +34,9 @@ LIBS="$LIBS $LIBINTL"
dnl Check for Audacious
dnl ===================

PKG_CHECK_MODULES(AUDACIOUS, [audacious >= 4.4],
PKG_CHECK_MODULES(AUDACIOUS, [audacious >= 4.5],
[],
[AC_MSG_ERROR([Cannot find Audacious 4.4; have you installed Audacious yet?])]
[AC_MSG_ERROR([Cannot find Audacious 4.5; have you installed Audacious yet?])]
)

CPPFLAGS="$CPPFLAGS $AUDACIOUS_CFLAGS"
Expand Down
4 changes: 2 additions & 2 deletions meson.build
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
project('audacious-plugins', 'c', 'cpp',
version: '4.4.2',
version: '4.5-devel',
meson_version: '>= 0.51',
default_options: [
'c_std=gnu99',
Expand Down Expand Up @@ -27,7 +27,7 @@ if have_darwin
endif


audacious_req = '>= 4.4'
audacious_req = '>= 4.5'
audacious_dep = dependency('audacious', version: audacious_req, required: true)


Expand Down

0 comments on commit 78f17f5

Please sign in to comment.