Skip to content

Commit

Permalink
Merge branch 'release/v3.0.5'
Browse files Browse the repository at this point in the history
  • Loading branch information
enfoqueNativo committed Jul 7, 2017
2 parents 8f44f54 + 31b9d73 commit 2d50f92
Show file tree
Hide file tree
Showing 12 changed files with 190 additions and 70 deletions.
12 changes: 12 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,18 @@

[CURRENT](https://github.com/SIU-Toba/framework/compare/master...develop)


[3.0.5](https://github.com/SIU-Toba/framework/tree/3.0.5) (2017-07-07):
- Se agrega control a toba_nucleo por si la app no se inicializa en el acceso_rest
- Se fixea error de invocación en la función toba_perfil_datos::get_restricciones_dimension
- Se agrega el comando toba_docker al bin-dir de composer
- Agregado del comando instalar al proyecto toba_usuarios para registrar la bd
- Exportación de secuencias a archivo para permitir trabajo en branches simultáneos
- Quitados hooks de gitflow y comando set_id_branch
- Quitada la restauración del schema de auditoría
- Agregados hooks para gitflow (AVH Edition) y post-checkout para trabajo con branches
- Agregado el comando set_id_branch para permitir trabajar metadatos con branches simultaneos

[3.0.4](https://github.com/SIU-Toba/framework/tree/3.0.4) (2017-06-27):
- Bugfix a rutas en el lanzador de comandos

Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
3.0.4
3.0.5
3 changes: 2 additions & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,8 @@
"require-dev": {
"greenlion/PHP-SQL-Parser": "@dev"
},
"bin": ["bin/toba"],
"bin": ["bin/toba",
"bin/toba_docker"],
"autoload": {
"psr-4": {
"SIUToba\\Framework\\": "src/SIUToba/"
Expand Down
156 changes: 106 additions & 50 deletions composer.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion php/lib/toba_validaciones.php
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ static function cbu_valido($cbu) {
* @param integer $pos_final
* @return integer digito verificador de la cadena $numero
*/
private function verificador($numero, $pos_inicial, $pos_final){
static private function verificador($numero, $pos_inicial, $pos_final){
$ponderador = array(3, 1, 7, 9);
$suma = 0;
$j = 0;
Expand Down

0 comments on commit 2d50f92

Please sign in to comment.