Skip to content

Release v2.2.0

Jan Loewe requested to merge develop into master

Features

  • Added measuring equipment (#50)
  • Added phone and fax for contact and contactNotStrict (#69)

Previews

  • Added preview for equipment class (#59)
  • Added preview for one dimensional tolerances (#68)

Changes

Documentation

  • The german documentation was improved

Breaking Changes

respPersons now utilizes contactNotStrict (#53)

Migration

Migration

  • person was moved to person -> name
  • eMailPerson was moved to person -> eMail
  • location was moved to person -> location
  • furtherInfoPerson was renamed to description

v2.1.1 (before)

<dcc:respPerson>
	<dcc:person>Vorname Name</dcc:person>
	<dcc:eMailPerson>vorname.name@ptb.de</dcc:eMailPerson>
	<dcc:furtherInfoPerson>
		<dcc:content lang="de">Signaturstelle</dcc:content>
		<dcc:content lang="en">signature authority</dcc:content>
	</dcc:furtherInfoPerson>
	<dcc:location>
		<!--...-->
	</dcc:location>
</dcc:respPerson>

v2.2.0 (after)

<dcc:respPerson>
	<dcc:person>
		<dcc:name>
			<dcc:content>Vorname Name</dcc:content>
		</dcc:name>
		<dcc:eMail>vorname.name@ptb.de</dcc:eMail>
		<dcc:location>
                    <!--...-->
		</dcc:location>
	</dcc:person>
	<dcc:description>
		<dcc:content lang="de">Signaturstelle</dcc:content>
		<dcc:content lang="en">signature authority</dcc:content>
	</dcc:description>
</dcc:respPerson>

Upgraded to D-SI v1.3.0

See https://gitlab1.ptb.de/d-ptb/d-si/xsd-d-si for information on how to upgrade.

Merge request reports