Skip to content

Commit

Permalink
Merge pull request #41 from TransbankDevelopers/chore/prepare-release-3
Browse files Browse the repository at this point in the history
Prepare Release 3.0.0
  • Loading branch information
Alfredo Fiebig authored Oct 29, 2019
2 parents e9a577e + 31ab748 commit b4909fb
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 5 deletions.
11 changes: 11 additions & 0 deletions Changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,17 @@ Todos los cambios notables a este proyecto serán documentados en este archivo.
El formato está basado en [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
y este proyecto adhiere a [Semantic Versioning](http://semver.org/spec/v2.0.0.html).

## [3.0.0] - 2019-10-29

### Changed

- `Sale`
- `Ticket` data type from `int` to `string`. (It has to be 6 characters)

- Fix a bug when no option was selected in the sale or it was canceled from the pos.

Also, improves the way wrappepr is generated in makefile.

## [2.0.0] - 2019-06-26

### Added
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ Para generar una nueva versión se debe crear un nuevo pull request que contenga

1. Incrementar el número de versión en el archivo `version.rc` siguiendo la guía de SemVer.
2. Actualizar `Changelog.md` con los nuevos cambios/modificaciones incluidas en esta nueva versión.
3. Generar la DLL y el Wrapper (`make windows-wrapper`).
3. Generar la DLL y el Wrapper (`make dll`).

Luego de mezclar el Pull Request:

Expand Down
8 changes: 4 additions & 4 deletions version.rc
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@

// DLL version information.
VS_VERSION_INFO VERSIONINFO
FILEVERSION 2,0,0,0
PRODUCTVERSION 2,0,0,0
FILEVERSION 3,0,0,0
PRODUCTVERSION 3,0,0,0
FILEFLAGSMASK VS_FFI_FILEFLAGSMASK
#ifdef _DEBUG
FILEFLAGS VS_FF_DEBUG | VS_FF_PRERELEASE
Expand All @@ -20,12 +20,12 @@ BEGIN
BEGIN
VALUE "CompanyName", "Transbank"
VALUE "FileDescription", "Library used by TransbankPosSDK to communicate with Verifone VX520 y VX520C integrated POS."
VALUE "FileVersion", "2.0.0.0"
VALUE "FileVersion", "3.0.0.0"
VALUE "InternalName", "TransbankWrap"
VALUE "LegalCopyright", "2019 Transbank"
VALUE "OriginalFilename", "TransbankWrap.dll"
VALUE "ProductName", "TransbankWrap Library"
VALUE "ProductVersion", "2.0.0.0"
VALUE "ProductVersion", "3.0.0.0"
END
END
BLOCK "VarFileInfo"
Expand Down

0 comments on commit b4909fb

Please sign in to comment.