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

Commit

Permalink
Updated for release 1.9.0
Browse files Browse the repository at this point in the history
  • Loading branch information
gitbrent committed Dec 13, 2018
1 parent 233dc6f commit 37dd626
Show file tree
Hide file tree
Showing 12 changed files with 22 additions and 21 deletions.
7 changes: 4 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [1.9.0] - 2018-12-??
## [1.9.0] - 2018-12-12
### Added
- New `file` API method: `checkin()` ([gitbrent](https://github.com/gitbrent))
- New `file` API method: `checkout()` ([gitbrent](https://github.com/gitbrent))
Expand All @@ -20,7 +20,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Allow single UserProfile property to be queried [\#38](https://github.com/gitbrent/sprestlib/issues/38) ([YakQin](https://github.com/YakQin))
- 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`
### Removed
*DEPRECATED* `baseUrl()` and `nodeConfig` methods - use new `options()` method instead.
*DEPRECATED* `baseUrl()` and `nodeConfig` methods - use the new `options()` method instead.


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

[Unreleased]: https://github.com/gitbrent/sprestlib/compare/v1.8.0...HEAD
[Unreleased]: https://github.com/gitbrent/sprestlib/compare/v1.9.0...HEAD
[1.9.0]: https://github.com/gitbrent/sprestlib/compare/v1.8.0...v1.9.0
[1.8.0]: https://github.com/gitbrent/sprestlib/compare/v1.7.0...v1.8.0
[1.7.0]: https://github.com/gitbrent/sprestlib/compare/v1.6.0...v1.7.0
[1.6.0]: https://github.com/gitbrent/sprestlib/compare/v1.5.0...v1.6.0
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@ then run the following code snippet which will load the SpRestLib bundle script
```javascript
// Load/Demo SpRestLib via CDN
var script = document.createElement('script');
script.src = "https://cdn.jsdelivr.net/gh/gitbrent/sprestlib@1.8.0/dist/sprestlib.bundle.js";
script.src = "https://cdn.jsdelivr.net/gh/gitbrent/sprestlib@1.9.0/dist/sprestlib.bundle.js";
script.onload = function(){
// Demo library method - show current user info
console.log('Current SharePoint User: ');
Expand All @@ -153,9 +153,9 @@ demo of all available methods.

## CDN
```javascript
<script src="https://cdn.jsdelivr.net/gh/gitbrent/SpRestLib@1.8.0/dist/sprestlib.min.js"></script>
<script src="https://cdn.jsdelivr.net/gh/gitbrent/SpRestLib@1.9.0/dist/sprestlib.min.js"></script>
// Use bundle for IE11 support
<script src="https://cdn.jsdelivr.net/gh/gitbrent/SpRestLib@1.8.0/dist/sprestlib.bundle.js"></script>
<script src="https://cdn.jsdelivr.net/gh/gitbrent/SpRestLib@1.9.0/dist/sprestlib.bundle.js"></script>
```

## Download
Expand Down
4 changes: 2 additions & 2 deletions dist/sprestlib-ui.bundle.js
100755 → 100644

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/sprestlib-ui.bundle.js.map

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions dist/sprestlib-ui.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/sprestlib-ui.min.js.map

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions dist/sprestlib.bundle.js
100755 → 100644

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/sprestlib.bundle.js.map

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions dist/sprestlib.js
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,8 @@

(function(){
// APP VERSION/BUILD
var APP_VER = "1.9.0-beta";
var APP_BLD = "20181211";
var APP_VER = "1.9.0";
var APP_BLD = "20181212";
var DEBUG = false; // (verbose mode/lots of logging)
// ENUMERATIONS
// REF: [`SP.BaseType`](https://msdn.microsoft.com/en-us/library/office/jj246925.aspx)
Expand Down
4 changes: 2 additions & 2 deletions dist/sprestlib.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion example/sprestlib-demo.html
Original file line number Diff line number Diff line change
Expand Up @@ -309,7 +309,7 @@
</style>

<script src="https://code.jquery.com/jquery-3.3.1.min.js" integrity="sha256-FgpCb/KJQlLNfOu91ta32o/NMZxltwRo8QtmkMRdAu8=" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/gh/gitbrent/SpRestLib@1.8.0/dist/sprestlib.bundle.js"></script>
<script src="https://cdn.jsdelivr.net/gh/gitbrent/SpRestLib@1.9.0/dist/sprestlib.bundle.js"></script>
<script src="https://cdn.jsdelivr.net/gh/sorensen/ascii-table@0.0.9/ascii-table.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery.tablesorter/2.29.0/js/jquery.tablesorter.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/prism/1.15.0/prism.min.js"></script>
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "sprestlib",
"version": "1.9.0-beta",
"version": "1.9.0",
"author": {
"name": "Brent Ely",
"url": "https://github.com/gitbrent/"
Expand Down

0 comments on commit 37dd626

Please sign in to comment.