Skip to content

Commit b9d0867

Browse files
readme
1 parent e761f86 commit b9d0867

File tree

3 files changed

+79
-6
lines changed

3 files changed

+79
-6
lines changed

README.html

Lines changed: 27 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -679,12 +679,37 @@ <h1>News</h1>
679679
<!-- no title here -->
680680
<div class="section" id="v1-6-0-development-release">
681681
<h2>V1.6.0 (development release)</h2>
682+
<ul class="simple">
683+
<li><p><strong>KiCadTools</strong> a proof of concept module to read KiCad 6
684+
<cite>.kicad_sch</cite> schema file and compute the netlist. <em>This module can
685+
be used to perform any kind of processings on a KiCad schema. It is
686+
actually hosted in the source but could become a standalone
687+
project.</em> For PySpice, it provides a very flexible way to draft a
688+
circuit with the help of KiCad and then generate the netlist without
689+
using the netlist export feature of KiCad. And thus leverage the
690+
writing of fastidious cicruit.</p></li>
691+
</ul>
682692
</div>
683693
<div class="section" id="v1-5-0-production-release-2021-05-xx">
684694
<h2>V1.5.0 (production release) 2021-05-xx</h2>
685695
<ul class="simple">
686-
<li><p>renamed custom dunders &quot;__dunder__&quot; to &quot;CONSTANT&quot; or &quot;_private&quot; class attributes</p></li>
687-
<li><p>TO COMPLETE</p></li>
696+
<li><p>Support Ngspice up to version 34</p></li>
697+
<li><p>Renamed custom dunders &quot;__dunder__&quot; to &quot;CONSTANT&quot; or &quot;_private&quot; class attributes</p></li>
698+
<li><p>Fixed typo in documentation (thanks to endolith and brollb)</p></li>
699+
<li><p>Add DC temperature sweep support #272 (thanks to Fatsie)</p></li>
700+
<li><p>PWL support improvements #271 (thanks to Fatsie)</p></li>
701+
<li><p>Assign units on creation of temperature-sweep vectors #263 (thanks to ARF1)</p></li>
702+
<li><p>Prevent memory leaks by freeing ngspice command log #260 thanks to ARF1)</p></li>
703+
<li><p>Performance optimization: dispatch multiple alter commands jointly #259 (thanks to ARF1)</p></li>
704+
<li><p>Added spice library support #258 (thanks to Fatsie)</p></li>
705+
<li><p>Allow to specify DC value for PWL #257 (thanks to Fatsie)</p></li>
706+
<li><p>Support for <cite>.nodeset</cite> type initial condition #256 (thanks to Fatsie)</p></li>
707+
<li><p>Fix accuracy problems #254 (thanks to sotw1957)</p></li>
708+
<li><p>Changes to make it easier to use PySpice with a large archive of SPICE models medium diff #249 (thanks to xesscorp)</p></li>
709+
<li><p><cite>Netlist.py</cite>: Fix wrong method when joining parameters during netlist parse #245 (thanks to cyber-g)</p></li>
710+
<li><p>Unit: add Pickle support</p></li>
711+
<li><p>Add Parser code from #136 (thanks to jmgc) but not yet merged</p></li>
712+
<li><p>Unit: add np.mean</p></li>
688713
</ul>
689714
</div>
690715
<div class="section" id="v1-4-3-2020-07-04">

README.rst

Lines changed: 26 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -175,11 +175,35 @@ News
175175
V1.6.0 (development release)
176176
----------------------------
177177

178+
* **KiCadTools** a proof of concept module to read KiCad 6
179+
`.kicad_sch` schema file and compute the netlist. *This module can
180+
be used to perform any kind of processings on a KiCad schema. It is
181+
actually hosted in the source but could become a standalone
182+
project.* For PySpice, it provides a very flexible way to draft a
183+
circuit with the help of KiCad and then generate the netlist without
184+
using the netlist export feature of KiCad. And thus leverage the
185+
writing of fastidious cicruit.
186+
178187
V1.5.0 (production release) 2021-05-xx
179188
--------------------------------------
180189

181-
* renamed custom dunders "__dunder__" to "CONSTANT" or "_private" class attributes
182-
* TO COMPLETE
190+
* Support Ngspice up to version 34
191+
* Renamed custom dunders "__dunder__" to "CONSTANT" or "_private" class attributes
192+
* Fixed typo in documentation (thanks to endolith and brollb)
193+
* Add DC temperature sweep support #272 (thanks to Fatsie)
194+
* PWL support improvements #271 (thanks to Fatsie)
195+
* Assign units on creation of temperature-sweep vectors #263 (thanks to ARF1)
196+
* Prevent memory leaks by freeing ngspice command log #260 thanks to ARF1)
197+
* Performance optimization: dispatch multiple alter commands jointly #259 (thanks to ARF1)
198+
* Added spice library support #258 (thanks to Fatsie)
199+
* Allow to specify DC value for PWL #257 (thanks to Fatsie)
200+
* Support for `.nodeset` type initial condition #256 (thanks to Fatsie)
201+
* Fix accuracy problems #254 (thanks to sotw1957)
202+
* Changes to make it easier to use PySpice with a large archive of SPICE models medium diff #249 (thanks to xesscorp)
203+
* `Netlist.py`: Fix wrong method when joining parameters during netlist parse #245 (thanks to cyber-g)
204+
* Unit: add Pickle support
205+
* Add Parser code from #136 (thanks to jmgc) but not yet merged
206+
* Unit: add np.mean
183207

184208
V1.4.3 2020-07-04
185209
-----------------

doc/sphinx/source/news.txt

Lines changed: 26 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,35 @@
88
V1.6.0 (development release)
99
----------------------------
1010

11+
* **KiCadTools** a proof of concept module to read KiCad 6
12+
`.kicad_sch` schema file and compute the netlist. *This module can
13+
be used to perform any kind of processings on a KiCad schema. It is
14+
actually hosted in the source but could become a standalone
15+
project.* For PySpice, it provides a very flexible way to draft a
16+
circuit with the help of KiCad and then generate the netlist without
17+
using the netlist export feature of KiCad. And thus leverage the
18+
writing of fastidious cicruit.
19+
1120
V1.5.0 (production release) 2021-05-xx
1221
--------------------------------------
1322

14-
* renamed custom dunders "__dunder__" to "CONSTANT" or "_private" class attributes
15-
* TO COMPLETE
23+
* Support Ngspice up to version 34
24+
* Renamed custom dunders "__dunder__" to "CONSTANT" or "_private" class attributes
25+
* Fixed typo in documentation (thanks to endolith and brollb)
26+
* Add DC temperature sweep support #272 (thanks to Fatsie)
27+
* PWL support improvements #271 (thanks to Fatsie)
28+
* Assign units on creation of temperature-sweep vectors #263 (thanks to ARF1)
29+
* Prevent memory leaks by freeing ngspice command log #260 thanks to ARF1)
30+
* Performance optimization: dispatch multiple alter commands jointly #259 (thanks to ARF1)
31+
* Added spice library support #258 (thanks to Fatsie)
32+
* Allow to specify DC value for PWL #257 (thanks to Fatsie)
33+
* Support for `.nodeset` type initial condition #256 (thanks to Fatsie)
34+
* Fix accuracy problems #254 (thanks to sotw1957)
35+
* Changes to make it easier to use PySpice with a large archive of SPICE models medium diff #249 (thanks to xesscorp)
36+
* `Netlist.py`: Fix wrong method when joining parameters during netlist parse #245 (thanks to cyber-g)
37+
* Unit: add Pickle support
38+
* Add Parser code from #136 (thanks to jmgc) but not yet merged
39+
* Unit: add np.mean
1640

1741
V1.4.3 2020-07-04
1842
-----------------

0 commit comments

Comments
 (0)