Skip to content

Commit

Permalink
Tag 2.3.4
Browse files Browse the repository at this point in the history
  • Loading branch information
Nicolas Beauvais committed Feb 10, 2019
1 parent f8f6e35 commit d5e84c5
Show file tree
Hide file tree
Showing 8 changed files with 14 additions and 10 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
<a name="2.3.4"></a>
# [2.3.4](https://github.com/nicolasbeauvais/vue-social-sharing/compare/2.3.3...2.3.4) (2019-02-11)
- Add support for facebook hashtags (PR #120)

<a name="2.3.3"></a>
# [2.3.3](https://github.com/nicolasbeauvais/vue-social-sharing/compare/2.3.2...2.3.3) (2017-12-11)
- Tag 2.3.3
Expand Down
2 changes: 1 addition & 1 deletion bower.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "vue-social-sharing",
"version": "2.3.3",
"version": "2.3.4",
"homepage": "https://github.com/nicolasbeauvais/vue-social-sharing",
"authors": [
"nicolasbeauvais <nicolasbeauvais1@gmail.com>"
Expand Down
4 changes: 2 additions & 2 deletions dist/vue-social-sharing.common.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*!
* vue-social-sharing v2.3.3
* vue-social-sharing v2.3.4
* (c) 2019 nicolasbeauvais
* Released under the MIT License.
*/
Expand Down Expand Up @@ -360,7 +360,7 @@ var SocialSharing = {
}
};

SocialSharing.version = '2.3.3';
SocialSharing.version = '2.3.4';

SocialSharing.install = function (Vue) {
Vue.component('social-sharing', SocialSharing);
Expand Down
4 changes: 2 additions & 2 deletions dist/vue-social-sharing.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*!
* vue-social-sharing v2.3.3
* vue-social-sharing v2.3.4
* (c) 2019 nicolasbeauvais
* Released under the MIT License.
*/
Expand Down Expand Up @@ -362,7 +362,7 @@ var SocialSharing = {
}
};

SocialSharing.version = '2.3.3';
SocialSharing.version = '2.3.4';

SocialSharing.install = function (Vue) {
Vue.component('social-sharing', SocialSharing);
Expand Down
4 changes: 2 additions & 2 deletions dist/vue-social-sharing.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "vue-social-sharing",
"description": "A Vue.js component for sharing links to social networks",
"version": "2.3.3",
"version": "2.3.4",
"author": {
"name": "nicolasbeauvais",
"email": "nicolasbeauvais1@gmail.com"
Expand Down
2 changes: 1 addition & 1 deletion src/index.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import SocialSharing from './social-sharing';

SocialSharing.version = '2.3.3';
SocialSharing.version = '2.3.4';

SocialSharing.install = (Vue) => {
Vue.component('social-sharing', SocialSharing);
Expand Down
2 changes: 1 addition & 1 deletion test/e2e/test/share.js
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ for (const network in Networks) {
browser
.url('http://localhost:8080/examples/vue2-example.html')
.click(`#${network}`)
.windowHandles(verifySharePopup(`${parsedUrl.hostname}`))
.windowHandles(verifySharePopup(`${parsedUrl.hostname}`.replace('www.', '')))
.end();
};
}
Expand Down

0 comments on commit d5e84c5

Please sign in to comment.