Skip to content

Commit

Permalink
Preparing 0.7.2 release
Browse files Browse the repository at this point in the history
  • Loading branch information
adelnoureddine committed Feb 20, 2024
1 parent 6a8db2b commit e9f1b9e
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ The difference (increase or decrease) of power consumption from last metric will

The following options are available:
- ```-h```: show the help message
- ```-h```: show version number
- ```-v```: show version number
- ```-p pid```: specifiy a particular PID to monitor
- ```-a appName```: specifiy a particular application name to monitor (will monitor all PIDs of the application)
- ```-f filename```: save monitoring data to the given filename path
Expand Down
2 changes: 1 addition & 1 deletion alire.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name = "powerjoular"
description = "Monitoring the power consumption of multiple platforms and processes"
version = "0.7.1"
version = "0.7.2"

authors = ["Adel Noureddine"]
maintainers = ["Adel Noureddine <adel.noureddine@univ-pau.fr>"]
Expand Down
2 changes: 1 addition & 1 deletion installer/debian-control-amd64.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
Package: powerjoular
Version: 0.7.1
Version: 0.7.2
Maintainer: Adel Noureddine
Architecture: amd64
Description: PowerJoular allows monitoring power consumption of multiple platforms and processes.
2 changes: 1 addition & 1 deletion installer/debian-control-arm64.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
Package: powerjoular
Version: 0.7.1
Version: 0.7.2
Maintainer: Adel Noureddine
Architecture: arm64
Description: PowerJoular allows monitoring power consumption of multiple platforms and processes.
2 changes: 1 addition & 1 deletion installer/debian-control-armhf.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
Package: powerjoular
Version: 0.7.1
Version: 0.7.2
Maintainer: Adel Noureddine
Architecture: armhf
Description: PowerJoular allows monitoring power consumption of multiple platforms and processes.
4 changes: 2 additions & 2 deletions src/help_info.adb
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,9 @@ with Ada.Characters.Latin_1; use Ada.Characters.Latin_1;

package body Help_Info is

Version_Number : constant String := "0.7.2";

procedure Show_Help is
Version_Number : constant String := "0.7.1";
begin
Put_Line (ESC & "[93m" & "~~ PowerJoular ~~" & ESC & "[0m");
Put_Line ("Version " & Version_Number);
Expand Down Expand Up @@ -52,7 +53,6 @@ package body Help_Info is
end;

procedure Show_Version is
Version_Number : constant String := "0.7.1";
begin
Put_Line (Version_Number);
end;
Expand Down

0 comments on commit e9f1b9e

Please sign in to comment.