Skip to content
This repository was archived by the owner on Jan 18, 2021. It is now read-only.

Commit 37dd626

Browse files
committed
Updated for release 1.9.0
1 parent 233dc6f commit 37dd626

12 files changed

+22
-21
lines changed

CHANGELOG.md

+4-3
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ All notable changes to this project will be documented in this file.
44
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
55
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
66

7-
## [1.9.0] - 2018-12-??
7+
## [1.9.0] - 2018-12-12
88
### Added
99
- New `file` API method: `checkin()` ([gitbrent](https://github.com/gitbrent))
1010
- New `file` API method: `checkout()` ([gitbrent](https://github.com/gitbrent))
@@ -20,7 +20,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
2020
- Allow single UserProfile property to be queried [\#38](https://github.com/gitbrent/sprestlib/issues/38) ([YakQin](https://github.com/YakQin))
2121
- The `rest()` method now includes the page's `__REQUESTDIGEST` value for POST types with custom headers that did not already include a value for `X-RequestDigest`
2222
### Removed
23-
*DEPRECATED* `baseUrl()` and `nodeConfig` methods - use new `options()` method instead.
23+
*DEPRECATED* `baseUrl()` and `nodeConfig` methods - use the new `options()` method instead.
2424

2525

2626
## [v1.8.0](https://github.com/gitbrent/sprestlib/tree/v1.8.0) (2018-08-29)
@@ -171,7 +171,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
171171
## [v0.9.0](https://github.com/gitbrent/sprestlib/tree/v1.0.0) (2017-01-31)
172172
**Initial Release**
173173

174-
[Unreleased]: https://github.com/gitbrent/sprestlib/compare/v1.8.0...HEAD
174+
[Unreleased]: https://github.com/gitbrent/sprestlib/compare/v1.9.0...HEAD
175+
[1.9.0]: https://github.com/gitbrent/sprestlib/compare/v1.8.0...v1.9.0
175176
[1.8.0]: https://github.com/gitbrent/sprestlib/compare/v1.7.0...v1.8.0
176177
[1.7.0]: https://github.com/gitbrent/sprestlib/compare/v1.6.0...v1.7.0
177178
[1.6.0]: https://github.com/gitbrent/sprestlib/compare/v1.5.0...v1.6.0

README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,7 @@ then run the following code snippet which will load the SpRestLib bundle script
131131
```javascript
132132
// Load/Demo SpRestLib via CDN
133133
var script = document.createElement('script');
134-
script.src = "https://cdn.jsdelivr.net/gh/gitbrent/sprestlib@1.8.0/dist/sprestlib.bundle.js";
134+
script.src = "https://cdn.jsdelivr.net/gh/gitbrent/sprestlib@1.9.0/dist/sprestlib.bundle.js";
135135
script.onload = function(){
136136
// Demo library method - show current user info
137137
console.log('Current SharePoint User: ');
@@ -153,9 +153,9 @@ demo of all available methods.
153153

154154
## CDN
155155
```javascript
156-
<script src="https://cdn.jsdelivr.net/gh/gitbrent/SpRestLib@1.8.0/dist/sprestlib.min.js"></script>
156+
<script src="https://cdn.jsdelivr.net/gh/gitbrent/SpRestLib@1.9.0/dist/sprestlib.min.js"></script>
157157
// Use bundle for IE11 support
158-
<script src="https://cdn.jsdelivr.net/gh/gitbrent/SpRestLib@1.8.0/dist/sprestlib.bundle.js"></script>
158+
<script src="https://cdn.jsdelivr.net/gh/gitbrent/SpRestLib@1.9.0/dist/sprestlib.bundle.js"></script>
159159
```
160160

161161
## Download

dist/sprestlib-ui.bundle.js

100755100644
+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/sprestlib-ui.bundle.js.map

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/sprestlib-ui.min.js

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/sprestlib-ui.min.js.map

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/sprestlib.bundle.js

100755100644
+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/sprestlib.bundle.js.map

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/sprestlib.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -34,8 +34,8 @@
3434

3535
(function(){
3636
// APP VERSION/BUILD
37-
var APP_VER = "1.9.0-beta";
38-
var APP_BLD = "20181211";
37+
var APP_VER = "1.9.0";
38+
var APP_BLD = "20181212";
3939
var DEBUG = false; // (verbose mode/lots of logging)
4040
// ENUMERATIONS
4141
// REF: [`SP.BaseType`](https://msdn.microsoft.com/en-us/library/office/jj246925.aspx)

dist/sprestlib.min.js

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

example/sprestlib-demo.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -309,7 +309,7 @@
309309
</style>
310310

311311
<script src="https://code.jquery.com/jquery-3.3.1.min.js" integrity="sha256-FgpCb/KJQlLNfOu91ta32o/NMZxltwRo8QtmkMRdAu8=" crossorigin="anonymous"></script>
312-
<script src="https://cdn.jsdelivr.net/gh/gitbrent/SpRestLib@1.8.0/dist/sprestlib.bundle.js"></script>
312+
<script src="https://cdn.jsdelivr.net/gh/gitbrent/SpRestLib@1.9.0/dist/sprestlib.bundle.js"></script>
313313
<script src="https://cdn.jsdelivr.net/gh/sorensen/[email protected]/ascii-table.min.js"></script>
314314
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery.tablesorter/2.29.0/js/jquery.tablesorter.min.js"></script>
315315
<script src="https://cdnjs.cloudflare.com/ajax/libs/prism/1.15.0/prism.min.js"></script>

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "sprestlib",
3-
"version": "1.9.0-beta",
3+
"version": "1.9.0",
44
"author": {
55
"name": "Brent Ely",
66
"url": "https://github.com/gitbrent/"

0 commit comments

Comments
 (0)