Skip to content

Commit

Permalink
Versão 2.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
mateussbh committed May 10, 2024
1 parent 9b06835 commit e07cbd6
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/MdWsSeiRest.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
class MdWsSeiRest extends SeiIntegracao
{
const NOME_MODULO = "MdWsSeiRest";
const VERSAO_MODULO = "2.1.2";
const VERSAO_MODULO = "2.2.0";

// A partir da versão 2.0.0, o módulo de integração do SEI com o PEN não será mais compatível com o SEI 3.0.X
const COMPATIBILIDADE_MODULO_SEI = array(
Expand Down
6 changes: 6 additions & 0 deletions src/scripts/sei_atualizar_versao_modulo_wssei.php
Original file line number Diff line number Diff line change
Expand Up @@ -150,6 +150,11 @@ public function versao_2_1_2($strVersaoAtual)
{
$this->logar("VERSÃO $strVersaoAtual atualizada.");
}

public function versao_2_2_0($strVersaoAtual)
{
$this->logar("VERSÃO $strVersaoAtual atualizada.");
}
}

session_start();
Expand All @@ -174,6 +179,7 @@ public function versao_2_1_2($strVersaoAtual)
'2.1.0' => 'versao_2_1_0',
'2.1.1' => 'versao_2_1_1',
'2.1.2' => 'versao_2_1_2',
'2.2.0' => 'versao_2_2_0',
)
);

Expand Down
8 changes: 7 additions & 1 deletion src/scripts/sip_atualizar_versao_modulo_wssei.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php
// Identificação da versão do módulo mod-wssei. Este deve estar sempre sincronizado com a versão definida em MdWsSeiRest.php
define("VERSAO_MODULO_WSSEI", "2.1.2");
define("VERSAO_MODULO_WSSEI", "2.2.0");

require_once dirname(__FILE__) . '/../../web/Sip.php';

Expand Down Expand Up @@ -86,6 +86,11 @@ public function versao_2_1_2($strVersaoAtual)
{
$this->logar("VERSÃO $strVersaoAtual atualizada.");
}

public function versao_2_2_0($strVersaoAtual)
{
$this->logar("VERSÃO $strVersaoAtual atualizada.");
}
}

try {
Expand All @@ -112,6 +117,7 @@ public function versao_2_1_2($strVersaoAtual)
'2.1.0' => 'versao_2_1_0',
'2.1.1' => 'versao_2_1_1',
'2.1.2' => 'versao_2_1_2',
'2.2.0' => 'versao_2_2_0',
)
);

Expand Down

0 comments on commit e07cbd6

Please sign in to comment.