Skip to content

Commit 5cc03ba

Browse files
Merge pull request #33 from SpiceSharp/feature-sven
Update to Spice# 3.0.1
2 parents ba1fbb3 + bb6ccd6 commit 5cc03ba

File tree

5 files changed

+13
-12
lines changed

5 files changed

+13
-12
lines changed

.github/workflows/publish-nuget.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,6 @@ jobs:
3232

3333
- name: Publish to NuGet
3434
env:
35-
KEY: ${{ secrets.NUGET_APIKEY }}
36-
run: dotnet nuget push .\SpiceSharpBehavioral\bin\Release\SpiceSharpBehavioral.*.nupkg -k $KEY
35+
APIKEY: ${{ secrets.NUGET_APIKEY }}
36+
run: dotnet nuget push .\SpiceSharpBehavioral\bin\Release\SpiceSharpBehavioral.*.nupkg -k $env:APIKEY -s "https://api.nuget.org/v3/index.json"
3737

README.md

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -53,10 +53,11 @@ Please use the library with care.
5353

5454
## Current build status
5555

56-
| | Status |
56+
| Platform | Status |
5757
|:---|-------:|
58-
|AppVeyor CI (Windows)|[![Build status](https://ci.appveyor.com/api/projects/status/1olsxasmk451200k/branch/master?svg=true)](https://ci.appveyor.com/project/SpiceSharp/spicesharpbehavioral/branch/master)|
59-
|Travis CI (Linux/iOS/Mono)|[![Build Status](https://travis-ci.org/SpiceSharp/SpiceSharpBehavioral.svg?branch=master)](https://travis-ci.org/SpiceSharp/SpiceSharpBehavioral)|
58+
| Windows | ![Windows Tests](https://github.com/SpiceSharp/SpiceSharpBehavioral/workflows/Windows%20Tests/badge.svg) |
59+
| Linux (Mono) | ![Linux Tests](https://github.com/SpiceSharp/SpiceSharpBehavioral/workflows/Linux%20Tests/badge.svg) |
60+
| MacOS (Mono) | ![MacOS Tests](https://github.com/SpiceSharp/SpiceSharpBehavioral/workflows/MacOS%20Tests/badge.svg) |
6061

6162
## Aim of Spice#.Behavioral?
6263

@@ -71,4 +72,4 @@ Advantages:
7172
Disadvantages:
7273

7374
- General performance can be sub-optimal.
74-
- It may be unclear for the inexperienced user why a simulation may be unstable or badly behaving.
75+
- It may be unclear for inexperienced users why a simulation became unstable or badly behaving.

SpiceSharpBehavioral/Components/BehavioralComponent.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ public override void CreateBehaviors(ISimulation simulation)
9494
{
9595
var behaviors = new BehaviorContainer(Name);
9696
simulation.EntityBehaviors.Add(behaviors);
97-
DI.Resolve(simulation, this, behaviors, LinkParameters);
97+
DI.Resolve(simulation, this, behaviors);
9898
}
9999
}
100100
}

SpiceSharpBehavioral/SpiceSharpBehavioral.csproj

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
<PropertyGroup>
44
<TargetFrameworks>netstandard1.5;netstandard2.0;net45;netcoreapp2.0</TargetFrameworks>
5-
<Version>3.0.0</Version>
5+
<Version>3.0.1</Version>
66
<Authors>Sven Boulanger</Authors>
77
<Title>Spice#.Behavioral</Title>
88
<Description>Spice#.Behavioral is a library that allows using behavioral components in the circuit simulator Spice#.</Description>
@@ -11,12 +11,12 @@
1111
<RepositoryUrl>https://github.com/SpiceSharp/SpiceSharpBehavioral</RepositoryUrl>
1212
<PackageTags>circuit electronics netlist parser spice simulator simulation ode solver design behavioral modeling</PackageTags>
1313
<PackageIconUrl></PackageIconUrl>
14-
<AssemblyVersion>3.0.0.0</AssemblyVersion>
14+
<AssemblyVersion>3.0.1.0</AssemblyVersion>
1515
<PackageReleaseNotes>Refer to the GitHub release for release notes.</PackageReleaseNotes>
1616
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
1717
<Company />
1818
<NeutralLanguage>en</NeutralLanguage>
19-
<FileVersion>3.0.0.0</FileVersion>
19+
<FileVersion>3.0.1.0</FileVersion>
2020
<DebugType>full</DebugType>
2121
<DebugSymbols>true</DebugSymbols>
2222
<PackageLicenseExpression>MIT</PackageLicenseExpression>
@@ -67,7 +67,7 @@
6767

6868
<ItemGroup>
6969
<PackageReference Include="SpiceSharp">
70-
<Version>3.0.0</Version>
70+
<Version>3.0.1</Version>
7171
</PackageReference>
7272
<PackageReference Include="System.Reflection.Emit.Lightweight">
7373
<Version>4.7.0</Version>

SpiceSharpBehavioralTest/SpiceSharpBehavioralTest.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@
7171
</ItemGroup>
7272
<ItemGroup>
7373
<PackageReference Include="SpiceSharp">
74-
<Version>3.0.0</Version>
74+
<Version>3.0.1</Version>
7575
</PackageReference>
7676
<PackageReference Include="NUnit">
7777
<Version>3.12.0</Version>

0 commit comments

Comments
 (0)