Skip to content
This repository was archived by the owner on Feb 20, 2025. It is now read-only.

Commit 127852f

Browse files
Koefferlein Matthias (IFAG DES TCP FLP)Koefferlein Matthias (IFAG DES TCP FLP)
authored andcommitted
Version 1.7
1 parent 62eb67d commit 127852f

File tree

4 files changed

+13
-3
lines changed

4 files changed

+13
-3
lines changed

CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,14 @@
11

2+
# Version 1.7 - 2023-09-15
3+
4+
* Bugfix for XS::layer
5+
6+
# Version 1.6 - 2023-09-05
7+
8+
* Generalizing some useful methods (XS::base_box, XS::layer)
9+
* Ruby 2.x compatibility enhanced
10+
* Compatibility with older KLayout versions
11+
212
# Version 1.5 - 2023-08-30
313

414
* Enabling multi-rulers in 0.28.x KLayout version:

src/grain.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<salt-grain>
33
<name>xsection</name>
4-
<version>1.6</version>
4+
<version>1.7</version>
55
<api-version/>
66
<title>Ruby script</title>
77
<doc>A generator for vertical cross sections of layouts using a technology description file.</doc>

src/macros/xsection.lym

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ require_relative("../ruby/xsection")
3232
module XS
3333

3434
# UPDATE THE VERSION NUMBER ON EACH RELEASE HERE
35-
VERSION = "1.6"
35+
VERSION = "1.7"
3636

3737
@xsection_processing_environment = XSectionScriptEnvironment.new
3838

src/ruby/xsection_generator.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ def layer(layer_spec, layout = nil, cell = nil)
5959
ld = LayoutData.new([], self)
6060
layout ||= @layout
6161
cell ||= @cell
62-
ld.load(@layout, @cell, base_bbox(), layer_spec)
62+
ld.load(layout, cell, base_bbox(), layer_spec)
6363
return ld
6464
end
6565

0 commit comments

Comments
 (0)