Skip to content
This repository was archived by the owner on Sep 13, 2020. It is now read-only.

prepare for 1.0.2 release #51

Merged
merged 1 commit into from
Sep 15, 2015
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion configure.ac
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
AC_INIT(parse-embedded, 1.0.1, [email protected])
AC_INIT(parse-embedded, 1.0.2, [email protected])
AC_CONFIG_AUX_DIR(config)
AC_CONFIG_SRCDIR(common/simplejson.c)
AC_CONFIG_SRCDIR(unix/src/parse.c)
Expand Down
2 changes: 1 addition & 1 deletion openwrt/parse-embedded/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
include $(TOPDIR)/rules.mk

PKG_NAME:=parse-embedded
PKG_VERSION:=1.0.1
PKG_VERSION:=1.0.2
PKG_RELEASE:=1

PKG_SOURCE:=$(PKG_NAME)-sdks-$(PKG_VERSION).tar.gz
Expand Down
Binary file not shown.
Binary file not shown.
8 changes: 4 additions & 4 deletions yun/uploadLinuxPackage.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,28 +4,28 @@ YUN_PWD=arduino #YUN's PASSWORD, default is arduino

# scp parse_push and parse_request to Yun
expect -c "
spawn scp linux_package/parse-embedded_1.0.1-1_ar71xx.ipk root@$YUN_IP_ADDRESS:/root/
spawn scp linux_package/parse-embedded_1.0.2-1_ar71xx.ipk root@$YUN_IP_ADDRESS:/root/
expect *password:
send $YUN_PWD\n
interact
"

expect -c "
spawn scp linux_package/parse-embedded-yun_1.0.1-1_ar71xx.ipk root@$YUN_IP_ADDRESS:/root/
spawn scp linux_package/parse-embedded-yun_1.0.2-1_ar71xx.ipk root@$YUN_IP_ADDRESS:/root/
expect *password:
send $YUN_PWD\n
interact
"

expect -c "
spawn ssh root@$YUN_IP_ADDRESS ''/bin/opkg install /root/parse-embedded_1.0.1-1_ar71xx.ipk''
spawn ssh root@$YUN_IP_ADDRESS ''/bin/opkg install /root/parse-embedded_1.0.2-1_ar71xx.ipk''
expect *password:
send $YUN_PWD\n
interact
"

expect -c "
spawn ssh root@$YUN_IP_ADDRESS ''/bin/opkg install /root/parse-embedded-yun_1.0.1-1_ar71xx.ipk''
spawn ssh root@$YUN_IP_ADDRESS ''/bin/opkg install /root/parse-embedded-yun_1.0.2-1_ar71xx.ipk''
expect *password:
send $YUN_PWD\n
interact
Expand Down