Skip to content

Commit

Permalink
version: bumps to 7.0.4
Browse files Browse the repository at this point in the history
  • Loading branch information
flsobral committed Apr 6, 2021
1 parent 633ebbb commit d1e5da6
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 5 deletions.
8 changes: 6 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,10 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased]
## [7.0.4] - 2021-04-06

### Changed
- Simulator: Removes resizing of font on simulator for better fidelity across platforms - #293

### Fixed
- Android:
Expand Down Expand Up @@ -1157,4 +1160,5 @@ the ScrollContainer reseta it to true
[7.0.0]: https://github.com/totalcross/TotalCross/compare/v6.1.1...v7.0.0
[7.0.1]: https://github.com/totalcross/TotalCross/compare/v7.0.0...v7.0.1
[7.0.2]: https://github.com/totalcross/TotalCross/compare/v7.0.1...v7.0.2
[7.0.3]: https://github.com/totalcross/TotalCross/compare/v7.0.3...v7.0.3
[7.0.3]: https://github.com/totalcross/TotalCross/compare/v7.0.2...v7.0.3
[7.0.4]: https://github.com/totalcross/TotalCross/compare/v7.0.3...v7.0.4
2 changes: 1 addition & 1 deletion TotalCrossSDK/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ apply plugin: 'java'
apply plugin: 'maven-publish'

sourceCompatibility = 1.8
version = '7.0.3'
version = '7.0.4'
group = 'com.totalcross'
archivesBaseName = 'totalcross-sdk'

Expand Down
4 changes: 2 additions & 2 deletions TotalCrossSDK/src/main/java/totalcross/sys/Settings.java
Original file line number Diff line number Diff line change
Expand Up @@ -22,10 +22,10 @@ public final class Settings {
* base 100. For example, version 1.0 has value 100. version 4 has a
* version value of 400. A beta 0.81 VM will have version 81.
*/
public static int version = 703;
public static int version = 704;

/** Field that represents the version in a string form, like "1.36". Only digits and dot is allowed or an exception will be throws during tc.Deploy. */
public static String versionStr = "7.0.3";
public static String versionStr = "7.0.4";

/** Current build number for the TotalCross SDK.
* @since TotalCross 1.53
Expand Down

0 comments on commit d1e5da6

Please sign in to comment.