Skip to content

Commit

Permalink
some prep for 6.1.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
bradymiller committed Mar 20, 2022
1 parent 7ddef47 commit c7ce44f
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion docker/production-arm/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ services:
MYSQL_ROOT_PASSWORD: root
openemr:
restart: always
image: openemr/openemr:6.0.0
image: openemr/openemr:6.1.0
ports:
- 80:80
- 443:443
Expand Down
2 changes: 1 addition & 1 deletion docker/production/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ services:
MYSQL_ROOT_PASSWORD: root
openemr:
restart: always
image: openemr/openemr:6.0.0
image: openemr/openemr:6.1.0
ports:
- 80:80
- 443:443
Expand Down
2 changes: 1 addition & 1 deletion library/globals.inc.php
Original file line number Diff line number Diff line change
Expand Up @@ -577,7 +577,7 @@ function gblTimeZones()
'allow_debug_language' => array(
xl('Allow Debugging Language'),
'bool', // data type
'1', // default = true during development and false for production releases
'0', // default = true during development and false for production releases
xl('This will allow selection of the debugging (\'dummy\') language.')
),

Expand Down
4 changes: 2 additions & 2 deletions version.php
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
$v_major = '6';
$v_minor = '1';
$v_patch = '0';
$v_tag = '-dev'; // minor revision number, should be empty for production releases
$v_tag = ''; // minor revision number, should be empty for production releases

// A real patch identifier. This is incremented when we release a patch for a
// production release. Note the above $v_patch variable is a misnomer and actually
Expand Down Expand Up @@ -47,7 +47,7 @@
$v_js_includes = md5(microtime());
} else {
// Change this number when bumping
$v_js_includes = 71;
$v_js_includes = 72;
}

// Do not modify below
Expand Down

0 comments on commit c7ce44f

Please sign in to comment.