Skip to content

Commit

Permalink
Bump version to 3.3
Browse files Browse the repository at this point in the history
  • Loading branch information
daleclack committed Oct 22, 2021
1 parent b77ffa0 commit 4d2726e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Gtkmm3/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
set(CMAKE_CXX_STANDARD 17)
cmake_minimum_required(VERSION 3.0.0)
project(My_GtkUI VERSION 3.2.0)
project(My_GtkUI VERSION 3.3.0)

include(CTest)
enable_testing()
Expand Down
4 changes: 2 additions & 2 deletions Gtkmm3/src/MyWin.cc
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ conf_dlg(this)
{
//Initalize Window
set_icon_name("My_GtkUI");
set_title("My GtkUI 3.2");
set_title("My GtkUI 3.3");
conf_dlg.get_config(&width,&height);
overlay.add_overlay(draw_area);
default_background1();
Expand Down Expand Up @@ -138,7 +138,7 @@ void MyWin::about_dialog(){
std::vector<Glib::ustring> authors;
authors.push_back("Dale Clack");
//Create Comments
version=g_strdup_printf("3.2\nRunning against Gtkmm %d.%d.%d",
version=g_strdup_printf("3.3\nRunning against Gtkmm %d.%d.%d",
GTKMM_MAJOR_VERSION,
GTKMM_MINOR_VERSION,
GTKMM_MICRO_VERSION);
Expand Down

0 comments on commit 4d2726e

Please sign in to comment.