Skip to content

Commit

Permalink
Version 1.7
Browse files Browse the repository at this point in the history
  • Loading branch information
Koefferlein Matthias (IFAG DES TCP FLP) authored and Koefferlein Matthias (IFAG DES TCP FLP) committed Sep 15, 2023
1 parent 62eb67d commit 127852f
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 3 deletions.
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,14 @@

# Version 1.7 - 2023-09-15

* Bugfix for XS::layer

# Version 1.6 - 2023-09-05

* Generalizing some useful methods (XS::base_box, XS::layer)
* Ruby 2.x compatibility enhanced
* Compatibility with older KLayout versions

# Version 1.5 - 2023-08-30

* Enabling multi-rulers in 0.28.x KLayout version:
Expand Down
2 changes: 1 addition & 1 deletion src/grain.xml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<salt-grain>
<name>xsection</name>
<version>1.6</version>
<version>1.7</version>
<api-version/>
<title>Ruby script</title>
<doc>A generator for vertical cross sections of layouts using a technology description file.</doc>
Expand Down
2 changes: 1 addition & 1 deletion src/macros/xsection.lym
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ require_relative("../ruby/xsection")
module XS

# UPDATE THE VERSION NUMBER ON EACH RELEASE HERE
VERSION = "1.6"
VERSION = "1.7"

@xsection_processing_environment = XSectionScriptEnvironment.new

Expand Down
2 changes: 1 addition & 1 deletion src/ruby/xsection_generator.rb
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ def layer(layer_spec, layout = nil, cell = nil)
ld = LayoutData.new([], self)
layout ||= @layout
cell ||= @cell
ld.load(@layout, @cell, base_bbox(), layer_spec)
ld.load(layout, cell, base_bbox(), layer_spec)
return ld
end

Expand Down

0 comments on commit 127852f

Please sign in to comment.