diff --git a/fpga/rtl/puzzlefw_pkg.vhd b/fpga/rtl/puzzlefw_pkg.vhd index 8234e58..d28e3f0 100644 --- a/fpga/rtl/puzzlefw_pkg.vhd +++ b/fpga/rtl/puzzlefw_pkg.vhd @@ -95,8 +95,8 @@ package puzzlefw_pkg is -- Firmware info word. constant fw_api_version: natural := 1; - constant fw_version_major: natural := 0; - constant fw_version_minor: natural := 17; + constant fw_version_major: natural := 1; + constant fw_version_minor: natural := 0; constant fw_info_word: std_logic_vector(31 downto 0) := x"4a" & std_logic_vector(to_unsigned(fw_api_version, 8)) diff --git a/sw/src/userspace/version.hpp b/sw/src/userspace/version.hpp index 3774084..776fc07 100644 --- a/sw/src/userspace/version.hpp +++ b/sw/src/userspace/version.hpp @@ -1,2 +1,2 @@ -#define PUZZLEFW_SW_MAJOR 0 -#define PUZZLEFW_SW_MINOR 5 +#define PUZZLEFW_SW_MAJOR 1 +#define PUZZLEFW_SW_MINOR 0