Skip to content

Commit

Permalink
version bump
Browse files Browse the repository at this point in the history
  • Loading branch information
opoudjis committed Nov 20, 2023
1 parent 48c096e commit 55d9d80
Show file tree
Hide file tree
Showing 6 changed files with 64 additions and 38 deletions.
73 changes: 38 additions & 35 deletions lib/metanorma/iec/basicdoc.rng
Original file line number Diff line number Diff line change
Expand Up @@ -914,44 +914,47 @@
-->
<define name="image">
<element name="image">
<attribute name="id">
<data type="ID"/>
<ref name="Image"/>
</element>
</define>
<define name="Image">
<attribute name="id">
<data type="ID"/>
</attribute>
<attribute name="src">
<data type="anyURI"/>
</attribute>
<attribute name="mimetype"/>
<optional>
<attribute name="filename"/>
</optional>
<optional>
<attribute name="width">
<choice>
<data type="int"/>
<value>auto</value>
</choice>
</attribute>
<attribute name="src">
</optional>
<optional>
<attribute name="height">
<choice>
<data type="int"/>
<value>auto</value>
</choice>
</attribute>
</optional>
<optional>
<attribute name="alt"/>
</optional>
<optional>
<attribute name="title"/>
</optional>
<optional>
<attribute name="longdesc">
<data type="anyURI"/>
</attribute>
<attribute name="mimetype"/>
<optional>
<attribute name="filename"/>
</optional>
<optional>
<attribute name="width">
<choice>
<data type="int"/>
<value>auto</value>
</choice>
</attribute>
</optional>
<optional>
<attribute name="height">
<choice>
<data type="int"/>
<value>auto</value>
</choice>
</attribute>
</optional>
<optional>
<attribute name="alt"/>
</optional>
<optional>
<attribute name="title"/>
</optional>
<optional>
<attribute name="longdesc">
<data type="anyURI"/>
</attribute>
</optional>
</element>
</optional>
</define>
<define name="video">
<element name="video">
Expand Down
8 changes: 8 additions & 0 deletions lib/metanorma/iec/biblio.rng
Original file line number Diff line number Diff line change
Expand Up @@ -348,6 +348,9 @@
<zeroOrMore>
<ref name="contact"/>
</zeroOrMore>
<optional>
<ref name="logo"/>
</optional>
</element>
</define>
<define name="orgname">
Expand All @@ -366,6 +369,11 @@
</choice>
</element>
</define>
<define name="logo">
<element name="logo">
<ref name="image"/>
</element>
</define>
<define name="NameWithVariants">
<element name="primary">
<ref name="LocalizedString"/>
Expand Down
14 changes: 13 additions & 1 deletion lib/metanorma/iec/isodoc.rng
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
these elements; we just want one namespace for any child grammars
of this.
-->
<!-- VERSION v1.2.7 -->
<!-- VERSION v1.2.8 -->
<grammar xmlns:a="http://relaxng.org/ns/compatibility/annotations/1.0" xmlns="http://relaxng.org/ns/structure/1.0" datatypeLibrary="http://www.w3.org/2001/XMLSchema-datatypes">
<include href="reqt.rng"/>
<include href="basicdoc.rng">
Expand Down Expand Up @@ -1408,6 +1408,9 @@
<optional>
<attribute name="number"/>
</optional>
<optional>
<attribute name="branch-number"/>
</optional>
<optional>
<attribute name="obligation">
<choice>
Expand Down Expand Up @@ -1631,6 +1634,9 @@
<optional>
<attribute name="number"/>
</optional>
<optional>
<attribute name="branch-number"/>
</optional>
<optional>
<attribute name="type"/>
</optional>
Expand Down Expand Up @@ -1682,6 +1688,9 @@
<optional>
<attribute name="number"/>
</optional>
<optional>
<attribute name="branch-number"/>
</optional>
<optional>
<ref name="section-title"/>
</optional>
Expand Down Expand Up @@ -1779,6 +1788,9 @@
<optional>
<attribute name="number"/>
</optional>
<optional>
<attribute name="branch-number"/>
</optional>
<optional>
<attribute name="obligation">
<choice>
Expand Down
3 changes: 3 additions & 0 deletions lib/metanorma/iec/isostandard.rng
Original file line number Diff line number Diff line change
Expand Up @@ -220,6 +220,9 @@
<optional>
<attribute name="number"/>
</optional>
<optional>
<attribute name="branch-number"/>
</optional>
<optional>
<attribute name="type"/>
</optional>
Expand Down
2 changes: 1 addition & 1 deletion lib/metanorma/iec/version.rb
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module Metanorma
module Iec
VERSION = "2.3.3".freeze
VERSION = "2.3.4".freeze
end
end

2 changes: 1 addition & 1 deletion metanorma-iec.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ Gem::Specification.new do |spec|
spec.test_files = `git ls-files -- {spec}/*`.split("\n")
spec.required_ruby_version = Gem::Requirement.new(">= 2.7.0")

spec.add_dependency "metanorma-iso", "~> 2.5.2"
spec.add_dependency "metanorma-iso", "~> 2.5.4"
spec.add_dependency "pubid-iec"
spec.add_dependency "ruby-jing"

Expand Down

0 comments on commit 55d9d80

Please sign in to comment.