1
0
mirror of https://github.com/cmur2/language-zonefile.git synced 2025-10-11 19:52:06 +02:00

2 Commits

Author SHA1 Message Date
cn
3dbb38df8b Prepare 1.1.1 release 2018-01-29 20:43:08 +01:00
cn
1f64694e75 grammar: make resource record class (like IN) optional 2018-01-29 20:39:19 +01:00
3 changed files with 8 additions and 2 deletions

View File

@@ -1,5 +1,11 @@
# Changelog
## 1.1.1
IMPROVEMENTS:
- Make resource record class (like `IN`) optional
## 1.1.0 (November 26, 2017)
NEW FEATURES:

View File

@@ -29,7 +29,7 @@ repository:
name: 'variable.other.entry.control.zonefile'
}
{
begin: '((@)|([A-Za-z0-9_.-]+))?(\\s+\\d+[A-Za-z])?\\s+(IN|in|CH|ch)\\s+(\\w+)\\s+'
begin: '((@)|([A-Za-z0-9_.-]+))?(\\s+\\d+[A-Za-z])?(\\s+IN|in|CH|ch)?\\s+(\\w+)\\s+'
beginCaptures:
'2':
name: 'keyword.entry.resource.record.zonefile'

View File

@@ -1,7 +1,7 @@
{
"name": "language-zonefile",
"description": "Bind Zone File language support in Atom",
"version": "1.1.0",
"version": "1.1.1",
"engines": {
"atom": "*"
},