Skip to content

Commit

Permalink
Update release docs
Browse files Browse the repository at this point in the history
  • Loading branch information
mrpmorris committed Aug 3, 2022
1 parent 8990104 commit b004744
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 6 deletions.
19 changes: 16 additions & 3 deletions Docs/Releases.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,24 @@


## Releases

### New in 1.1.0
- `ForEachWithIndex`

```
<ForEachWithIndex Context=item in @People>
<tr>
<td>@item.Index
<td>@item.Value.Name
</tr>
</ForEachWithIndex>
```

### New in 1.0.0
- `ForEach`
```
<ForEach Context=Person In=@People>
<li>@Person.Name</li>
<ForEach Context=person In=@People>
<li>@person.Name</li>
```

- Simple `If`
Expand All @@ -27,4 +40,4 @@
Other content
</Else>
</If>
```
```
4 changes: 1 addition & 3 deletions Source/Lib/Directory.Build.props
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,7 @@
<PropertyGroup>
<TargetFrameworks>netcoreapp3.1;net5.0;net6.0</TargetFrameworks>
<LangVersion>10</LangVersion>
<Version>1.0.1</Version>
<AssemblyVersion>1.0.1</AssemblyVersion>
<FileVersion>1.0.1</FileVersion>
<Version>1.1.0</Version>

<Authors>Peter Morris</Authors>
<Company />
Expand Down

0 comments on commit b004744

Please sign in to comment.