Skip to content

Commit

Permalink
Bump to 3.5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
bayasdev committed Aug 17, 2024
1 parent 60bd37a commit fba8c6d
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 5 deletions.
7 changes: 3 additions & 4 deletions envycontrol.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

# begin constants definition

VERSION = '3.4.0'
VERSION = '3.5.0'

# Note: Do NOT remove this in cleanup!
CACHE_FILE_PATH = '/var/cache/envycontrol/cache.json'
Expand Down Expand Up @@ -469,10 +469,9 @@ def get_amd_igpu_name():


def rebuild_initramfs():

# OSTREE systems first
# OSTree systems first
if any(os.path.exists(dir) for dir in ['/ostree', '/sysroot/ostree']):
print('Regenerating initramfs with rpm-ostree. This will take several minutes; please be patient.')
print('Rebuilding the initramfs with rpm-ostree...')
command = ['rpm-ostree', 'initramfs', '--enable', '--arg=--force']

# Debian and Ubuntu derivatives
Expand Down
2 changes: 1 addition & 1 deletion flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
packages.${system} = {
envycontrol = pkgs.python3Packages.buildPythonPackage {
pname = "envycontrol";
version = "3.4.0";
version = "3.5.0";
src = self;
};
default = self.packages.${system}.envycontrol;
Expand Down

0 comments on commit fba8c6d

Please sign in to comment.