Skip to content

Commit 7ce12d9

Browse files
committed
Add abstract="true" to Base... types, prepare for v3.4.1 release
1 parent 0e82528 commit 7ce12d9

File tree

14 files changed

+43
-37
lines changed

14 files changed

+43
-37
lines changed

CHANGELOG.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,11 @@ Patch version changes will typically include cosmetic changes (e.g. _xs:document
1919
## [Unreleased]
2020

2121

22+
## [v3.4.1] - 2019-04-05
23+
24+
* Change all `Base....` complex types to be `abstract="true"`
25+
26+
2227
## [v3.4.0] - 2019-04-05
2328

2429
* No changes to the schema.
@@ -171,7 +176,8 @@ Patch version changes will typically include cosmetic changes (e.g. _xs:document
171176

172177
* Initial open source release
173178

174-
[Unreleased]: https://github.com/gchq/event-logging-schema/compare/v3.4.0...HEAD
179+
[Unreleased]: https://github.com/gchq/event-logging-schema/compare/v3.4.1...HEAD
180+
[v3.4.1]: https://github.com/gchq/event-logging-schema/compare/v3.4.0...v3.4.1
175181
[v3.4.0]: https://github.com/gchq/event-logging-schema/compare/v3.4-beta.1...v3.4.0
176182
[v3.4-beta.1]: https://github.com/gchq/event-logging-schema/compare/v3.3.0...v3.4-beta.1
177183
[v3.3.1]: https://github.com/gchq/event-logging-schema/compare/v3.3.0...v3.3.1

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -113,10 +113,10 @@ When you are ready to release a new version of the schema ensure you have done t
113113
The change can be achieved with some global search replace, e.g.:
114114
115115
```bash
116-
find docs/completeExamples/ \(-name "*.xml.md" -o -name "*.xml" \) \
116+
find docs/completeExamples/ \( -name "*.xml.md" -o -name "*.xml" \) \
117117
| xargs sed -i'' 's#file://event-logging-v3.4.0.xsd#file://event-logging-v3.4.1.xsd#'
118118
119-
find docs/completeExamples/ \(-name "*.xml.md" -o -name "*.xml" \) \
119+
find docs/completeExamples/ \( -name "*.xml.md" -o -name "*.xml" \) \
120120
| xargs sed -i'' 's#Version="3.4.0"#Version="3.4.1"#'
121121
```
122122
1. Run the build to ensure the versions are all valid and the example XML is all valid against the schema.

docs/completeExamples/xml/Event_Meta_JSON.xml.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@
55
<Events
66
xmlns="event-logging:3"
77
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
8-
xsi:schemaLocation="event-logging:3 file://event-logging-v3.4.0.xsd"
9-
Version="3.4.0">
8+
xsi:schemaLocation="event-logging:3 file://event-logging-v3.4.1.xsd"
9+
Version="3.4.1">
1010

1111
<!-- JSON Meta example -->
1212
<Event>

docs/completeExamples/xml/Event_Meta_XML.xml.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@
55
<Events
66
xmlns="event-logging:3"
77
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
8-
xsi:schemaLocation="event-logging:3 file://event-logging-v3.4.0.xsd"
9-
Version="3.4.0">
8+
xsi:schemaLocation="event-logging:3 file://event-logging-v3.4.1.xsd"
9+
Version="3.4.1">
1010

1111
<!-- XML Meta example -->
1212
<Event>

docs/completeExamples/xml/objectTypes/Criteria.xml.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@ Criteria can be used within other schema actions.
1010
<Events
1111
xmlns="event-logging:3"
1212
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
13-
xsi:schemaLocation="event-logging:3 file://event-logging-v3.4.0.xsd"
14-
Version="3.4.0">
13+
xsi:schemaLocation="event-logging:3 file://event-logging-v3.4.1.xsd"
14+
Version="3.4.1">
1515

1616
<!-- View/Criteria event -->
1717

docs/completeExamples/xml/objectTypes/SearchResults.xml.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@ SearchResults can be used within other schema actions.
1313
<Events
1414
xmlns="event-logging:3"
1515
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
16-
xsi:schemaLocation="event-logging:3 file://event-logging-v3.4.0.xsd"
17-
Version="3.4.0">
16+
xsi:schemaLocation="event-logging:3 file://event-logging-v3.4.1.xsd"
17+
Version="3.4.1">
1818

1919
<!-- View/SearchResults event -->
2020

docs/completeExamples/xml/schemaActions/AntiMalware.xml.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@ The user `jc101` has run an antimalware scan on `LUNA/LUNADESK35` using the anti
1212
<Events
1313
xmlns="event-logging:3"
1414
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
15-
xsi:schemaLocation="event-logging:3 file://event-logging-v3.4.0.xsd"
16-
Version="3.4.0">
15+
xsi:schemaLocation="event-logging:3 file://event-logging-v3.4.1.xsd"
16+
Version="3.4.1">
1717

1818
<!-- AnitMalware event [DEPRECATED]-->
1919
<Event>

docs/completeExamples/xml/schemaActions/Import_File.xml.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@ The nature of the event (type of View) can be indicated within `<EventDetail>/<T
1212
<Events
1313
xmlns="event-logging:3"
1414
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
15-
xsi:schemaLocation="event-logging:3 file://event-logging-v3.4.0.xsd"
16-
Version="3.4.0">
15+
xsi:schemaLocation="event-logging:3 file://event-logging-v3.4.1.xsd"
16+
Version="3.4.1">
1717

1818
<Event>
1919
<EventTime>

docs/completeExamples/xml/schemaActions/Import_Object.xml.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@ There is no Success element in `<Outcome>`, so it is assumed that the action com
1212
<Events
1313
xmlns="event-logging:3"
1414
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
15-
xsi:schemaLocation="event-logging:3 file://event-logging-v3.4.0.xsd"
16-
Version="3.4.0">
15+
xsi:schemaLocation="event-logging:3 file://event-logging-v3.4.1.xsd"
16+
Version="3.4.1">
1717

1818
<!-- Import Object event -->
1919
<Event>

docs/completeExamples/xml/schemaActions/Print.xml.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@ The document is `2` pages in length and `3410212` bytes in length.
1010
<Events
1111
xmlns="event-logging:3"
1212
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
13-
xsi:schemaLocation="event-logging:3 file://event-logging-v3.4.0.xsd"
14-
Version="3.4.0">
13+
xsi:schemaLocation="event-logging:3 file://event-logging-v3.4.1.xsd"
14+
Version="3.4.1">
1515

1616
<!-- Print event
1717

0 commit comments

Comments
 (0)