Skip to content

Commit 282bfc9

Browse files
authored
Merge pull request #333 from fieg/release-3.0.0-beta.4
Release 3.0.0-beta.4 Public Beta
2 parents 8f7bc82 + 318e4be commit 282bfc9

File tree

7 files changed

+11
-7
lines changed

7 files changed

+11
-7
lines changed

.travis.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,4 +24,5 @@ before_script:
2424

2525
script:
2626
- npm run lint
27-
- cypress run --record --key $CYPRESS_KEY
27+
- if [ "$CYPRESS_KEY" = "" ]; then cypress run; fi
28+
- if [ "$CYPRESS_KEY" != "" ]; then cypress run --record --key $CYPRESS_KEY; fi

Makefile

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,11 +15,14 @@ up:
1515
open http://localhost:8080
1616
.PHONY: up
1717

18+
bump:
19+
npm --no-git-tag-version version $(SEMVER);
20+
.PHONY: bump
21+
1822
build: guard-SEMVER
1923
mkdir $(BUILD_DIR)
2024
git archive HEAD | tar -x -C $(BUILD_DIR)
2125
cd $(BUILD_DIR); \
22-
npm --no-git-tag-version version $(SEMVER); \
2326
npm install; \
2427
npm run build --production;
2528
.PHONY: build

examples/articles/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
"jquery-ias"
3030
],
3131
"dependencies": {
32-
"@webcreate/infinite-ajax-scroll": "^3.0.0-beta.3"
32+
"@webcreate/infinite-ajax-scroll": "^3.0.0-beta.4"
3333
},
3434
"devDependencies": {
3535
"parcel-bundler": "^1.10.3"

examples/blocks/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
"jquery-ias"
3030
],
3131
"dependencies": {
32-
"@webcreate/infinite-ajax-scroll": "^3.0.0-beta.3"
32+
"@webcreate/infinite-ajax-scroll": "^3.0.0-beta.4"
3333
},
3434
"devDependencies": {
3535
"parcel-bundler": "^1.10.3"

examples/masonry/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
"jquery-ias"
3030
],
3131
"dependencies": {
32-
"@webcreate/infinite-ajax-scroll": "^3.0.0-beta.3",
32+
"@webcreate/infinite-ajax-scroll": "^3.0.0-beta.4",
3333
"imagesloaded": "^4.1.4",
3434
"masonry-layout": "^4.2.2"
3535
},

package-lock.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@webcreate/infinite-ajax-scroll",
3-
"version": "3.0.0-beta.3",
3+
"version": "3.0.0-beta.4",
44
"title": "Infinite Ajax Scroll",
55
"description": "Turn your existing pagination into infinite scrolling pages with ease",
66
"license": "AGPL-3.0-only",

0 commit comments

Comments
 (0)