-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(pkgs): patch to define version at built time
- Loading branch information
Showing
2 changed files
with
17 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
Description: replace the software hard-coded version number with the | ||
Last-Update: 2023-07-25 | ||
Template: yes | ||
Author: Rémi Palancher <remi@rackslab.io> | ||
|
||
|
||
diff --git a/fatbuildr/version.py b/fatbuildr/version.py | ||
index b5d3800..db13aee 100644 | ||
--- a/fatbuildr/version.py | ||
+++ b/fatbuildr/version.py | ||
@@ -17,4 +17,4 @@ | ||
# You should have received a copy of the GNU General Public License | ||
# along with Fatbuildr. If not, see <https://www.gnu.org/licenses/>. | ||
|
||
-__version__ = '2.0.0' | ||
+__version__ = '{{ version.main }}' |