Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

0.20.0 #72

Merged
merged 1 commit into from
Dec 11, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Directory.Build.props
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project>
<PropertyGroup>
<!-- NuGet Packaging -->
<PackageVersion>0.15.0</PackageVersion>
<PackageVersion>0.20.0</PackageVersion>
<Authors>hadashiA</Authors>
<PackageProjectUrl>https://github.com/hadashiA/VYaml</PackageProjectUrl>
<RepositoryUrl>$(PackageProjectUrl)</RepositoryUrl>
Expand Down
8 changes: 6 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -64,12 +64,16 @@ Require Unity 2021.3 or later.

#### Install via git url

You can add following url to Unity Package Manager.
If you are using a version of Unity newer than 2022.2, you can install as the Unity package manager at the following git URL;

```
https://github.com/hadashiA/VYaml.git?path=VYaml.Unity/Assets/VYaml#0.15.0
https://github.com/hadashiA/VYaml.git?path=VYaml.Unity/Assets/VYaml#0.20.0
```

If you are using Unity 2022.1 or older, the git url cannot be used as is because the source generator versions are different.
Instead, install with VYaml.2022_1_or_lower.unitypackage from the [Releases](https://github.com/hadashiA/VYaml/releases) page.


## Usage

### Serialize / Deserialize
Expand Down
2 changes: 1 addition & 1 deletion VYaml.Tests/VYaml.Tests.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@

<!-- Copy files for Unity -->
<PropertyGroup>
<DestinationRoot>$(MSBuildProjectDirectory)\..\VYaml.Unity\Assets\VYaml\Tests</DestinationRoot>
<DestinationRoot>$(MSBuildProjectDirectory)\..\VYaml.Unity\Assets\Tests</DestinationRoot>
</PropertyGroup>
<ItemGroup>
<TargetFiles1 Include="$(MSBuildProjectDirectory)\**\*.cs" Exclude="**\bin\**\*.*;**\obj\**\*.*" />
Expand Down
File renamed without changes.
Binary file not shown.
2 changes: 1 addition & 1 deletion VYaml.Unity/Assets/VYaml/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "jp.hadashikick.vyaml",
"displayName": "VYaml",
"version": "0.15.0",
"version": "0.20.0",
"unity": "2021.3",
"description": "The extra fast YAML library",
"keywords": ["yaml", "serialization", "parser"],
Expand Down
Loading