Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
## [1.0.0] - 2019-04-03

### Bug Fixes

- Fixed compile errors on Unity 2018.4.
  • Loading branch information
Unity Technologies committed Apr 3, 2019
1 parent 9abfd8a commit a89d3f5
Show file tree
Hide file tree
Showing 4 changed files with 19 additions and 14 deletions.
19 changes: 12 additions & 7 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,16 @@
# Changelog

All notable changes to this package will be documented in this file.

The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).

## [1.0.0] - 2019-04-03

### Bug Fixes

- Fixed compile errors on Unity 2018.4.

## [0.1.0-preview.8] - 2019-03-29

### Features
Expand All @@ -23,22 +30,20 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.

## [0.1.0-preview.4] - 2019-02-28

### Package configuration update.
- Package configuration update.

## [0.1.0-preview.3] - 2019-02-27

### Small code update in sample.
- Small code update in sample.

## [0.1.0-preview.2] - 2019-02-22

### Rebuild meta files.
- Rebuild meta files.

## [0.1.0-preview.1] - 2019-02-01

### Move samples outside of main package.
- Move samples outside of main package.

## [0.1.0-preview.0] - 2018-10-08

### This is the first release of *Unity Package Settings Manager*.

A framework for making any serializable field a setting, complete with a pre-built settings interface.
This is the first release of *Unity Package Settings Manager*.
6 changes: 3 additions & 3 deletions Editor/UserSettingsProvider.cs
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,10 @@
using System.Reflection;
using UnityEngine;
#if SETTINGS_PROVIDER_ENABLED
#if UNITY_2018_3
using UnityEngine.Experimental.UIElements;
#else
#if UNITY_2019_1_OR_NEWER
using UnityEngine.UIElements;
#else
using UnityEngine.Experimental.UIElements;
#endif
#endif

Expand Down
2 changes: 1 addition & 1 deletion LICENSE.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Settings-Manager copyright © [2018] Unity Technologies ApS
Settings-Manager copyright © 2019 Unity Technologies ApS

Licensed under the Unity Companion License for Unity-dependent projects--see [Unity Companion License](http://www.unity3d.com/legal/licenses/Unity_Companion_License).

Expand Down
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
{
"name": "com.unity.settings-manager",
"displayName": "Settings Manager",
"version": "0.1.0-preview.8",
"unity": "2018.1",
"version": "1.0.0",
"unity": "2018.3",
"description": "A framework for making any serializable field a setting, complete with a pre-built settings interface.",
"dependencies": {},
"samples": [
Expand All @@ -15,6 +15,6 @@
"repository": {
"type": "git",
"url": "[email protected]:Unity-Technologies/com.unity.settings-manager.git",
"revision": "3241e5358783bb3955e561f778f4bbbff57708f0"
"revision": "4ad6e8b570fe0de32e5603d583851618faf7c9ae"
}
}

0 comments on commit a89d3f5

Please sign in to comment.