Skip to content

Commit

Permalink
Rename cbcs-recommended to cbcs-1-9
Browse files Browse the repository at this point in the history
Keeping up with spec changes driven by feedback from @xhwang-chromium
and @gregwfreedman.

Also updates version to 1.0.3.

Closes #10
  • Loading branch information
joeyparrish committed Dec 5, 2019
1 parent b57cc4c commit fc0b6ab
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 3 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
## 1.0.3 (2019-12-05)

Bugfixes:
- Update cbcs-recommended to cbcs-1-9 to keep up with spec changes


## 1.0.2 (2019-12-02)

Bugfixes:
Expand Down
2 changes: 1 addition & 1 deletion demo/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ <h2>Test query</h2>
<elix-auto-complete-combo-box id="encryptionScheme">
<div>cenc</div>
<div>cbcs</div>
<div>cbcs-recommended</div>
<div>cbcs-1-9</div>
</elix-auto-complete-combo-box>
</div>

Expand Down
2 changes: 1 addition & 1 deletion index.js
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ class EmeEncryptionSchemePolyfill {
} else if (keySystem.startsWith('org.w3')) {
return 'cenc';
} else if (keySystem.startsWith('com.apple')) {
return 'cbcs-recommended';
return 'cbcs-1-9';
}

// We don't have this key system in our map!
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "eme-encryption-scheme-polyfill",
"description": "A polyfill for the encryptionScheme field in EME",
"version": "1.0.2",
"version": "1.0.3",
"license": "Apache-2.0",
"author": "Google",
"homepage": "https://github.com/google/eme-encryption-scheme-polyfill#readme",
Expand Down

0 comments on commit fc0b6ab

Please sign in to comment.