Skip to content

Commit

Permalink
vendor: bump version to 2.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
inclyc committed May 24, 2024
1 parent ee2ef28 commit af2f89c
Show file tree
Hide file tree
Showing 8 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion libnixf/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@

stdenv.mkDerivation {
pname = "nixf";
version = "nightly";
version = "2.2.0";

src = ../.;

Expand Down
2 changes: 1 addition & 1 deletion libnixf/meson.build
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
project( 'nixf'
, ['c', 'cpp']
, default_options : ['cpp_std=gnu++20']
, version: 'nightly'
, version: '2.2.0'
)

nlohmann_json = dependency('nlohmann_json')
Expand Down
2 changes: 1 addition & 1 deletion libnixf/src/meson.build
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ libnixf = library(

pkgconfig.generate(
name: 'nixf',
version: 'nightly',
version: '2.2.0',
description: 'libnixf',
libraries: libnixf
)
Expand Down
2 changes: 1 addition & 1 deletion libnixt/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

stdenv.mkDerivation {
pname = "nixt";
version = "nightly";
version = "2.2.0";

src = ../.;

Expand Down
2 changes: 1 addition & 1 deletion libnixt/lib/meson.build
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ libnixt = library('nixt',
)

pkgconfig.generate(name: 'nixt',
version: 'nightly',
version: '2.2.0',
description: 'nix compatible layer',
subdirs: [ 'nixt' ],
libraries: libnixt,
Expand Down
2 changes: 1 addition & 1 deletion libnixt/meson.build
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
project( 'nixt'
, ['c', 'cpp']
, default_options : ['cpp_std=gnu++20']
, version: 'nightly'
, version: '2.2.0'
)

boost = dependency('boost')
Expand Down
2 changes: 1 addition & 1 deletion nixd/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ let
in
stdenv.mkDerivation {
inherit pname;
version = "nightly";
version = "2.2.0";

src = ../.;

Expand Down
2 changes: 1 addition & 1 deletion nixd/meson.build
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
project( 'nixd'
, ['c', 'cpp']
, default_options : ['cpp_std=gnu++20']
, version: 'nightly'
, version: '2.2.0'
)

config_h = configuration_data()
Expand Down

0 comments on commit af2f89c

Please sign in to comment.