* v1.99.1

* 1.99.1

* linter, enable rule line_break_style
This commit is contained in:
Lars Hvam 2020-09-03 09:30:44 +02:00 committed by GitHub
parent 9c41a2b7d8
commit 428575fb58
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 11 additions and 1 deletions

View File

@ -72,6 +72,7 @@
"globalMacros": [] "globalMacros": []
}, },
"rules": { "rules": {
"line_break_style": true,
"forbidden_pseudo_and_pragma": { "forbidden_pseudo_and_pragma": {
"ignoreGlobalClassDefinition": true, "ignoreGlobalClassDefinition": true,
"ignoreGlobalInterface": true, "ignoreGlobalInterface": true,

View File

@ -8,6 +8,15 @@ Legend
+ : added + : added
- : removed - : removed
2020-09-03 v1.99.1
------------------
! exception class updated, might require update via ZABAPGIT_STANDALONE
! restart abapGit in case of self update
* OTGR enable parentes again
* fix filename encoding of < and >
* class parsing, show line number causing error
* refactoring
2020-08-27 v1.99.0 2020-08-27 v1.99.0
------------------ ------------------
+ New functionality for switching between PRs for github + New functionality for switching between PRs for github

View File

@ -2,6 +2,6 @@ INTERFACE zif_abapgit_version
PUBLIC . PUBLIC .
CONSTANTS gc_xml_version TYPE string VALUE 'v1.0.0' ##NO_TEXT. CONSTANTS gc_xml_version TYPE string VALUE 'v1.0.0' ##NO_TEXT.
CONSTANTS gc_abap_version TYPE string VALUE '1.99.0' ##NO_TEXT. CONSTANTS gc_abap_version TYPE string VALUE '1.99.1' ##NO_TEXT.
ENDINTERFACE. ENDINTERFACE.