Skip to content

Commit

Permalink
readme
Browse files Browse the repository at this point in the history
  • Loading branch information
FabriceSalvaire committed May 13, 2021
1 parent e761f86 commit b9d0867
Show file tree
Hide file tree
Showing 3 changed files with 79 additions and 6 deletions.
29 changes: 27 additions & 2 deletions README.html
Original file line number Diff line number Diff line change
Expand Up @@ -679,12 +679,37 @@ <h1>News</h1>
<!-- no title here -->
<div class="section" id="v1-6-0-development-release">
<h2>V1.6.0 (development release)</h2>
<ul class="simple">
<li><p><strong>KiCadTools</strong> a proof of concept module to read KiCad 6
<cite>.kicad_sch</cite> schema file and compute the netlist. <em>This module can
be used to perform any kind of processings on a KiCad schema. It is
actually hosted in the source but could become a standalone
project.</em> For PySpice, it provides a very flexible way to draft a
circuit with the help of KiCad and then generate the netlist without
using the netlist export feature of KiCad. And thus leverage the
writing of fastidious cicruit.</p></li>
</ul>
</div>
<div class="section" id="v1-5-0-production-release-2021-05-xx">
<h2>V1.5.0 (production release) 2021-05-xx</h2>
<ul class="simple">
<li><p>renamed custom dunders &quot;__dunder__&quot; to &quot;CONSTANT&quot; or &quot;_private&quot; class attributes</p></li>
<li><p>TO COMPLETE</p></li>
<li><p>Support Ngspice up to version 34</p></li>
<li><p>Renamed custom dunders &quot;__dunder__&quot; to &quot;CONSTANT&quot; or &quot;_private&quot; class attributes</p></li>
<li><p>Fixed typo in documentation (thanks to endolith and brollb)</p></li>
<li><p>Add DC temperature sweep support #272 (thanks to Fatsie)</p></li>
<li><p>PWL support improvements #271 (thanks to Fatsie)</p></li>
<li><p>Assign units on creation of temperature-sweep vectors #263 (thanks to ARF1)</p></li>
<li><p>Prevent memory leaks by freeing ngspice command log #260 thanks to ARF1)</p></li>
<li><p>Performance optimization: dispatch multiple alter commands jointly #259 (thanks to ARF1)</p></li>
<li><p>Added spice library support #258 (thanks to Fatsie)</p></li>
<li><p>Allow to specify DC value for PWL #257 (thanks to Fatsie)</p></li>
<li><p>Support for <cite>.nodeset</cite> type initial condition #256 (thanks to Fatsie)</p></li>
<li><p>Fix accuracy problems #254 (thanks to sotw1957)</p></li>
<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>
<li><p><cite>Netlist.py</cite>: Fix wrong method when joining parameters during netlist parse #245 (thanks to cyber-g)</p></li>
<li><p>Unit: add Pickle support</p></li>
<li><p>Add Parser code from #136 (thanks to jmgc) but not yet merged</p></li>
<li><p>Unit: add np.mean</p></li>
</ul>
</div>
<div class="section" id="v1-4-3-2020-07-04">
Expand Down
28 changes: 26 additions & 2 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -175,11 +175,35 @@ News
V1.6.0 (development release)
----------------------------

* **KiCadTools** a proof of concept module to read KiCad 6
`.kicad_sch` schema file and compute the netlist. *This module can
be used to perform any kind of processings on a KiCad schema. It is
actually hosted in the source but could become a standalone
project.* For PySpice, it provides a very flexible way to draft a
circuit with the help of KiCad and then generate the netlist without
using the netlist export feature of KiCad. And thus leverage the
writing of fastidious cicruit.

V1.5.0 (production release) 2021-05-xx
--------------------------------------

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

V1.4.3 2020-07-04
-----------------
Expand Down
28 changes: 26 additions & 2 deletions doc/sphinx/source/news.txt
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,35 @@
V1.6.0 (development release)
----------------------------

* **KiCadTools** a proof of concept module to read KiCad 6
`.kicad_sch` schema file and compute the netlist. *This module can
be used to perform any kind of processings on a KiCad schema. It is
actually hosted in the source but could become a standalone
project.* For PySpice, it provides a very flexible way to draft a
circuit with the help of KiCad and then generate the netlist without
using the netlist export feature of KiCad. And thus leverage the
writing of fastidious cicruit.

V1.5.0 (production release) 2021-05-xx
--------------------------------------

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

V1.4.3 2020-07-04
-----------------
Expand Down

0 comments on commit b9d0867

Please sign in to comment.